lefthand0302 发表于 2013-1-30 20:25:50

UIButton,设置为UIButtonTypeCustom类型时,做圆角效果

我是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>

我的示例代码如下:
      UIButton *moreButton = ;      moreButton.frame = CGRectMake(1.0f, 1.0f, cell.contentView.frame.size.width-2, cell.contentView.frame.size.height-2);      ;      ; //设置矩形四个圆角半径      ; //边框宽度      moreButton.backgroundColor = ;



原文地址:http://stackoverflow.com/questions/7813379/what-does-receiver-type-calayer-for-instance-message-is-a-forward-declaration
页: [1]
查看完整版本: UIButton,设置为UIButtonTypeCustom类型时,做圆角效果