Skip to content

Instantly share code, notes, and snippets.

@TosinAF
Last active December 27, 2015 17:59
Show Gist options
  • Save TosinAF/7366184 to your computer and use it in GitHub Desktop.
Save TosinAF/7366184 to your computer and use it in GitHub Desktop.
To Generate a UIImage of a UIColor. Useful when you want to change the background color of a UIButton
- (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;
}
// http://stackoverflow.com/questions/14523348/how-to-change-the-background-color-of-a-uibutton-while-its-highlighted
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment