Last active
February 3, 2018 06:26
-
-
Save Koze/f8b3adf542c5dae6e9cf to your computer and use it in GitHub Desktop.
Getting Camera Roll with Photos.framework
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
PHFetchResult *result = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeSmartAlbum | |
subtype:PHAssetCollectionSubtypeSmartAlbumUserLibrary | |
options:nil]; | |
PHAssetCollection *assetCollection = result.firstObject; | |
NSLog(@"%@", assetCollection.localizedTitle); | |
// Camera Roll |
pretty late for @dodikk I guess but anyone else getting assetCollection == nil
needs to add permissions in their info.plist
<key>NSPhotoLibraryUsageDescription</key>
<string>My description about why I need this capability</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>This app requires access to the photo library.</string>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If iCloud is turned on, Camera Roll is not returned by this method. It instead returns All Photos. Is there any way to get Camera Roll asset collection when iCloud is turned on?