如何获取仅具有位置数据的PHAssets

时间:2015-10-12 20:34:05

标签: ios objective-c

在适用于iOS的照片框架中,为了使用特定过滤器发出一组PHAssets请求,您可以使用fetchAssetsWithOptions:options并传递一个PHFetchOptions对象,其中包含所需的过滤器。

我试图过滤掉其中没有位置资产元数据对象的任何PHAssets,并且不完全确定是否可以使用predicate选项完成在PHFetchOptions上。根据是否存在位置,可能有另一种方法来过滤掉资产,但我并不完全确定以最有效的方式执行此操作。

//Photos fetch
PHFetchOptions *options = [[PHFetchOptions alloc] init];

options = [NSPredicate predicateWithFormat:@"mediaType == %d", PHAssetMediaTypeImage];
options.sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"creationDate" ascending:NO]];

PHFetchResult *assetsFetchResults = [PHAsset fetchAssetsWithOptions:options];

1 个答案:

答案 0 :(得分:6)

根据https://developer.apple.com/library/prerelease/ios/documentation/Photos/Reference/PHFetchOptions_Class/index.html的文档,使用谓词无法完成此操作。 PHAsset的location属性不能在谓词/ sortDescriptor中使用。

因此唯一的选择是枚举PHFetchResult的对象,然后过滤掉那些没有位置数据的对象。这当然比使用谓词慢,但可能仍然是一个解决方案,具体取决于您的用例。

使用此方法的示例:

[PHPhotoLibrary requestAuthorization:^(PHAuthorizationStatus status) {
    PHFetchResult *result = [PHAsset fetchAssetsWithOptions:nil];
    NSMutableArray *filteredAssets = [NSMutableArray new];
    [result enumerateObjectsUsingBlock:^(PHAsset *asset, NSUInteger idx, BOOL * _Nonnull stop) {
        if (asset.location != nil) {
            [filteredAssets addObject:asset];
        }
    }];

    //optional - create new Collection/fetchresult with filtered assets
    PHAssetCollection *assetCollectionWithLocation = [PHAssetCollection transientAssetCollectionWithAssets:filteredAssets title:@"Assets with location data"];
    PHFetchResult *filteredResult = [PHAsset fetchAssetsInAssetCollection:assetCollectionWithLocation options:nil];

}];