想要将UIButton设置背景色

来源:互联网 发布:计算睡眠网络断开 编辑:程序博客网 时间:2024/06/06 08:50
    我是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代码  收藏代码
  1. UIButton *moreButton = [UIButton buttonWithType:UIButtonTypeCustom];  
  2.       moreButton.frame = CGRectMake(1.0f, 1.0f, cell.contentView.frame.size.width-2, cell.contentView.frame.size.height-2);  
  3.       [moreButton.layer setMasksToBounds:YES];  
  4.       [moreButton.layer setCornerRadius:10.0]; //设置矩形四个圆角半径  
  5.       [moreButton.layer setBorderWidth:1.0]; //边框宽度  
  6.       moreButton.backgroundColor = [UIColor clearColor];