关于颜色 随机色
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于颜色 随机色相关的知识,希望对你有一定的参考价值。
关于颜色的宏定义
// 根据指定的 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)))
以上是关于关于颜色 随机色的主要内容,如果未能解决你的问题,请参考以下文章