Skip to content

Instantly share code, notes, and snippets.

@hlung
Last active December 17, 2015 01:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hlung/5526038 to your computer and use it in GitHub Desktop.
Save hlung/5526038 to your computer and use it in GitHub Desktop.
Save UIImage to Saved Photo Album
#import <AssetsLibrary/AssetsLibrary.h>
UIImage *image = someImage;
ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
[library writeImageToSavedPhotosAlbum:image.CGImage
orientation:(ALAssetOrientation)image.imageOrientation
completionBlock:nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment