Skip to content

Instantly share code, notes, and snippets.

@maciejpiotrowski89
Created January 31, 2018 07:42
Show Gist options
  • Select an option

  • Save maciejpiotrowski89/275cc42dbb66bb668f89aef483161881 to your computer and use it in GitHub Desktop.

Select an option

Save maciejpiotrowski89/275cc42dbb66bb668f89aef483161881 to your computer and use it in GitHub Desktop.
Draw UIImage from UIView
- (UIImage *)image {
UIGraphicsBeginImageContextWithOptions(self.bounds.size, NO, 0.0);
[self.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment