16进制颜色转换

#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(0xDDEEFF);

猜你喜欢

转载自eric-gao.iteye.com/blog/1828416