您的位置:首页 > 产品设计 > UI/UE

想要将UIButton设置背景色

2013-07-31 15:20 246 查看
    我是ios开发新手。 

       今天遇到一个问题,想要将UIButton设置背景色,结果发现只有将Type设置为UIButtonTypeCustom时,背景色才起作用。 
      但是此时,圆角效果却木有了……。网上搜索了半天,基本上都说通过layer的几个方法设置,但是copy代码后报错“Receivertype 'CALayer'forinstance message is a forward declaration”。 
     最后从一个老外的帖子里找到答案: 
      Add QuartzCore.framework to your project and this line to your .m file. 
      #import
<QuartzCore/QuartzCore.h>
 

我的示例代码如下: 
     

Ios代码  


UIButton *moreButton = [UIButton buttonWithType:UIButtonTypeCustom];  

      moreButton.frame = CGRectMake(1.0f, 1.0f, cell.contentView.frame.size.width-2, cell.contentView.frame.size.height-2);  

      [moreButton.layer setMasksToBounds:YES];  

      [moreButton.layer setCornerRadius:10.0]; //设置矩形四个圆角半径  

      [moreButton.layer setBorderWidth:1.0]; //边框宽度  

      moreButton.backgroundColor = [UIColor clearColor];  
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  iOS UIButton