Skip to content

Instantly share code, notes, and snippets.

@masbog
Forked from kevinmcmahon/gist:2295471
Last active August 29, 2015 14:00
Show Gist options
  • Save masbog/11053311 to your computer and use it in GitHub Desktop.
Save masbog/11053311 to your computer and use it in GitHub Desktop.
Create UIImage from golor
- (UIImage *)imageWithColor:(UIColor *)color {
CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [color CGColor]);
CGContextFillRect(context, rect);
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment