Skip to content

Instantly share code, notes, and snippets.

@zhangwc
Created August 27, 2013 03:25
Show Gist options
  • Save zhangwc/6349334 to your computer and use it in GitHub Desktop.
Save zhangwc/6349334 to your computer and use it in GitHub Desktop.
- (UIImage *) createImageWithColor: (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 *theImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return theImage;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment