颜色值宏函数

绝对让你用着爽!

 

#define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]

//how to use

 

//UIColor *color=UIColorFromRGB(0xDDEEFF)

posted @ 2014-06-11 10:01  回读(IOS)  阅读(259)  评论(0编辑  收藏  举报