iOS 8 Photos framework: Get a list of all albums with iOS8
Using Photos Framework is a bit different, you can achieve the same result though, you just have to do it in parts. 1) Get all photos (Moments in iOS8, or Camera Roll before) PHFetchResult *allPhotosResult = [PHAsset fetchAssetsWithMediaType:PHAssetMediaTypeImage options:nil]; Optionally if you want them ordered as by creation date, you just add PHFetchOptions like so: … Read more