UIColor使用十六进制的宏

#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]

posted on 2014-05-14 18:14  金玉游龙  阅读(148)  评论(0编辑  收藏  举报

导航