我想从照片库中获取除屏幕截图、连拍、实时照片之外的所有照片(PHAsset)。
我尝试使用下面的代码,但它返回屏幕截图、连拍、实时照片
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)