Advertisements
Image from Color
The following code helps to get image (UIImage) for a given color (UIColor)
+ (UIImage *)imageWithColor:(UIColor *)color rect:(CGRect)rect { UIGraphicsBeginImageContext(rect.size); CGContextRef context = UIGraphicsGetCurrentContext(); CGContextSetFillColorWithColor(context, [color CGColor]); CGContextFillRect(context, rect); UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return image; }