02
ago
Do you want to create an UIColor from RGB value?
Here the snipplet:
1 2 3 4 | #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] |
to use:
1 | UIColor aColor = UIColorFromRGB(0xFF00FF); |
it’s all!


