I want to fetch all photos (PHAsset) except Screenshots, Burst, Live photos from Photo library.
I tried with code below but it returns Screenshots, Burst, Live photos
let options = PHFetchOptions()
options.sortDescriptors = [ NSSortDescriptor(key: "creationDate", ascending: true) ]
options.predicate = NSPredicate(format: "mediaType = %d", PHAssetMediaType.image.rawValue)
let assets = PHAsset.fetchAssets(with: options)