摘要:
1、使用UIColor的时候,使用到 [item setBackgroundColor:[UIColor colorWithRed:204 green:242 blue:233 alpha:1]];我使用的时候就按上面这样用,结果发现一点效果也没有,后来才发现red,green,blue的值都再0~1之间,尝试过后发现要按下面的用法才正确 [item setBackgroundColor:[UIColor colorWithRed:204/255.0 green:242/255.0 blue:233/255.0 alpha:1]];每个值除以255.0,就得到一个0~1的数。2、使用... 阅读全文