Skip to content

Instantly share code, notes, and snippets.

@youngshook
Created October 11, 2014 12:16
Show Gist options
  • Save youngshook/28fa7c7d216123f433b3 to your computer and use it in GitHub Desktop.
Save youngshook/28fa7c7d216123f433b3 to your computer and use it in GitHub Desktop.
Set Color as image
+ (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