Skip to content

Instantly share code, notes, and snippets.

@dodikk
Forked from Koze/PhotosCameraRoll.m
Created May 19, 2017 14:40
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 dodikk/367fe7418990bca035e3e7b180f8efac to your computer and use it in GitHub Desktop.
Save dodikk/367fe7418990bca035e3e7b180f8efac to your computer and use it in GitHub Desktop.
Getting Camera Roll with Photos.framework
PHFetchResult *result = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeSmartAlbum
subtype:PHAssetCollectionSubtypeSmartAlbumUserLibrary
options:nil];
PHAssetCollection *assetCollection = result.firstObject;
NSLog(@"%@", assetCollection.localizedTitle);
// Camera Roll
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment