Skip to content

Instantly share code, notes, and snippets.

@niorad
Created April 22, 2016 06:34
Show Gist options
  • Save niorad/18a60a29e16946ac8afb82d96cd04408 to your computer and use it in GitHub Desktop.
Save niorad/18a60a29e16946ac8afb82d96cd04408 to your computer and use it in GitHub Desktop.
Save UIView in User's Photo-Library
UIGraphicsBeginImageContextWithOptions(myView.bounds.size, true, 0)
myUiView.drawViewHierarchyInRect(myView.bounds, afterScreenUpdates: true)
let myImage = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
UIImageWriteToSavedPhotosAlbum(myImage, nil, nil, nil)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment