SKPhotoBrowser icon indicating copy to clipboard operation
SKPhotoBrowser copied to clipboard

There are a limited number of camera rolls.

Open eastswift opened this issue 7 years ago • 0 comments

There are a limited number of camera rolls. Why? If you fix the number, an error occurs. Can not the maximum number of camera rolls be used?

let options = PHFetchOptions() let limit = 8 // If you modify this, an error will occur. // I want the whole camera roll. options.sortDescriptors = [NSSortDescriptor(key: "creationDate", ascending: false)] options.predicate = NSPredicate(format: "mediaType = %d", PHAssetMediaType.image.rawValue)

eastswift avatar Jan 14 '18 23:01 eastswift