站内搜索:
首页 >> 前端 >> 内容
平铺文理+拉伸按钮图片

时间:2013/4/1 14:29:54

[html]
UIColor *circleColorPattern = [UIColor colorWithPatternImage: 
                                  [UIImage imageNamed:@"node.png"]]; 
   [self.view setBackgroundColor:circleColorPattern]; 
    
    
   UIImage *buttonBackgroundImage = [[UIImage imageNamed:@"btnImage.jpg"] 
                                     resizableImageWithCapInsets:UIEdgeInsetsMake(0,13,0,13)]; 
   [self.m_Btn setBackgroundImage:buttonBackgroundImage 
                     forState:UIControlStateNormal]; 

 UIColor *circleColorPattern = [UIColor colorWithPatternImage:
                                   [UIImage imageNamed:@"node.png"]];
    [self.view setBackgroundColor:circleColorPattern];
   
   
    UIImage *buttonBackgroundImage = [[UIImage imageNamed:@"btnImage.jpg"]
                                      resizableImageWithCapInsets:UIEdgeInsetsMake(0,13,0,13)];
    [self.m_Btn setBackgroundImage:buttonBackgroundImage
                      forState:UIControlStateNormal];

 

  • 上一篇:网站设计分析:浅谈设计中的逻辑
  • 下一篇:CSS中IE6的兼容问题汇总
  • 返回顶部