Created
May 2, 2018 18:55
-
-
Save oitan/0447ea42b35d649e6daff4ec961322ab to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//taken from: https://www.hackingwithswift.com/example-code/media/how-to-render-a-uiview-to-a-uiimage | |
//Available from iOS 10.0 | |
let renderer = UIGraphicsImageRenderer(size: view.bounds.size) | |
let image = renderer.image { ctx in | |
view.drawHierarchy(in: view.bounds, afterScreenUpdates: true) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment