码迷,mamicode.com
首页 > 其他好文 > 详细

UIColor 使用起来的坑

时间:2016-04-25 19:34:49      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:

我们一般会用 UIColor 的RGB来生成颜色:

[UIColor colorWithRed:220/255 green:220/255 blue:220/255 alpha:1.0];//这样生成的颜色是黑色的,不是我们想要的

以下几种方式都是可以的:

        _pushBtn.backgroundColor = [UIColor colorWithRed:220/255.f green:220/255.f blue:220/255.f alpha:1.0];

        _pushBtn.backgroundColor = [UIColor colorWithRed:220.0/255 green:220.0/255 blue:220.0/255 alpha:1.0];

        _pushBtn.backgroundColor = [UIColor colorWithRed:220.f/255 green:220.f/255 blue:220.f/255 alpha:1.0];

 

 

UIColor 使用起来的坑

标签:

原文地址:http://www.cnblogs.com/shidaying/p/5432205.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!