1
Air_Mu 2012-09-13 19:45:12 +08:00
|
3
chrisyipw 2012-09-13 20:27:30 +08:00
|
4
fmfsaisai 2012-09-13 22:18:52 +08:00
#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] UIColor *color = UIColorFromRGB(0x800080); .... |