Как получить видео из Галереи без iCloude Asset?
в настоящее время он отображает оба актива
PHFetchOptions *options = [[PHFetchOptions alloc] init];
options.sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"creationDate" ascending:NO]];
options.fetchLimit = 6;
options.predicate = [NSPredicate predicateWithFormat:@"mediaType = %d", PHAssetMediaTypeVideo];
self.assetsFetchResults = [PHAsset fetchAssetsWithOptions:options];
Я пытался следовать в options.predicate , но он не работает.
[NSPredicate predicateWithFormat:@"sourceType = %d", PHAssetSourceTypeUserLibrary]
[NSPredicate predicateWithFormat:@“assetSource = %d", PHAssetSourceTypeUserLibrary]