Skip to content

Instantly share code, notes, and snippets.

@jeepkd
Created March 2, 2016 06:02
Show Gist options
  • Save jeepkd/530bc8fdef2c5cb50481 to your computer and use it in GitHub Desktop.
Save jeepkd/530bc8fdef2c5cb50481 to your computer and use it in GitHub Desktop.
Dynamic background image from color
CGSize size = CGSizeMake(desiredWidth, desiredHeight);
UIGraphicsBeginImageContextWithOptions(size, YES, 0);
[[UIColor whiteColor] setFill];
UIRectFill(CGRectMake(0, 0, size.width, size.height));
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment