关于颜色的宏定义
// 根据指定的 RGB 创建 UIColor
#define RGB(r, g, b) ([UIColor colorWithRed:(r / 255.0) green:(g / 255.0) blue:(b / 255.0) alpha:1.0])
/// 创建随机颜色
#define RandomColor (RGB(arc4random_uniform(256), arc4random_uniform(256), arc4random_uniform(256)))
关于颜色 随机色
原文:http://www.cnblogs.com/wealon/p/5240985.html