ibireme / YYCategories

A set of useful categories for Foundation and UIKit.
MIT License
826 stars 218 forks source link

UIColor 可以加个 rgb int参数的不? #9

Closed shengdoushi closed 8 years ago

shengdoushi commented 8 years ago

虽然可以通过

但是加上这个某些时候更方便些:

可以直接使用 RGB(11, 134, 123) 这样的形式了,

ibireme commented 8 years ago

UIColor 本身就已经有 + (UIColor *)colorWithRed:(CGFloat)red green:(CGFloat)green blue:(CGFloat)blue alpha:(CGFloat)alpha; 这个方法了,如果在加其他相似名字的方法,容易引起混淆。

另外,可能每个个人或团队都有自己的一套宏定义习惯吧,这个没必要加进来。