在 PHPhotoLibrary 中,photoLibraryDidChange 不会通知所有更新

Posted

技术标签:

【中文标题】在 PHPhotoLibrary 中,photoLibraryDidChange 不会通知所有更新【英文标题】:In PHPhotoLibrary, photoLibraryDidChange doesn't notify all update 【发布时间】:2016-07-26 13:45:47 【问题描述】:

我正在使用phphotoLibrary 在 iPhone 中为我的应用程序相册保存和获取图像。

当我的相册有很多图像(大约 5,000 张静止图像)时, 我的应用程序从网络下载了 10 张图片,然后保存到相机胶卷并添加到我的应用程序的相册中。

同时,应用程序观察photoLibraryDidChange回调知道添加的图像,但它只通知5个插入的图像。

我按下 HOME 按钮完成我的申请,并在 Photo App 中检查相机胶卷和我的相册。 正确有 5010 张图片。

也许photoLibraryDidChagne 没有通知所有更改?

我的代码如下。

- (void)photoLibraryDidChange:(PHChange *)changeInstance

    // dispatch main queue
    dispatch_async(dispatch_get_main_queue(), ^
        [self handleChangedLibrary:changeInstance];
    );


- (void)handleChangedLibrary:(PHChange *)changeInstance

    PHFetchResultChangeDetails *fetchResultChangeDetails = [changeInstance changeDetailsForFetchResult:_assetsFetchResult];

    if (!fetchResultChangeDetails) 
        NSLog(@"### No change in fetchResultChangeDetails ###");
        return;
    

    if (![fetchResultChangeDetails hasIncrementalChanges]) 
        [self fetchAllAssets];
        return;
    

    NSArray *insertedObjects = [fetchResultChangeDetails insertedObjects];
    if (insertedObjects) 
        for (PHAsset *asset in insertedObjects) 
            if (asset.mediaType == PHAssetMediaTypeImage) 
                NSLog(@"asset=%@", asset);
                [_stillImageAssetArray addObject:asset];
            
        
    

    self.assetsFetchResult = [PHAsset fetchAssetsInAssetCollection:_assetCollection options:nil];

我通过 NSLog 和 Debugger 检查了插入的资源,它确实更新了 5 张图片。

其他 5 张图片没有通知。

【问题讨论】:

【参考方案1】:

我修复了代码中的错误点,并确认修改后问题没有发生。

错误点:

    在某些情况下,我的代码'return;'在回调中获取资产集合之前。 我应该从fetchResultChangeDetails.fetchResultAfterChanges 获取新结果,而不是[PHAsset fetchAssetsInAssetCollection:options:]

我参考了以下 Apple 的代码进行修改。

PHPhotoLibraryChangeObserver https://developer.apple.com/library/ios/documentation/Photos/Reference/PHPhotoLibraryChangeObserver_Protocol/

我的固定代码如下所示。谢谢。

- (void)handleChangedLibrary:(PHChange *)changeInstance

    // Check for changes to the list of assets (insertions, deletions, moves, or updates).
    PHFetchResultChangeDetails *fetchResultChangeDetails = [changeInstance changeDetailsForFetchResult:_assetsFetchResult];
    if (!fetchResultChangeDetails) 
        NSLog(@"### No change in fetchResultChangeDetails ###");
        return;
    

    // Get the new fetch result for future change tracking.
    self.assetsFetchResult = fetchResultChangeDetails.fetchResultAfterChanges;

    if (![fetchResultChangeDetails hasIncrementalChanges]) 
        [self fetchAllAssets];        
        return;
    

    NSArray *insertedObjects = [fetchResultChangeDetails insertedObjects];
    if (insertedObjects) 
        for (PHAsset *asset in insertedObjects) 
            if (asset.mediaType == PHAssetMediaTypeImage) 
                NSLog(@"asset=%@", asset);
                [_stillImageAssetArray addObject:asset];
            
        
    

【讨论】:

以上是关于在 PHPhotoLibrary 中,photoLibraryDidChange 不会通知所有更新的主要内容,如果未能解决你的问题,请参考以下文章

在 PHPhotoLibrary 中,photoLibraryDidChange 不会通知所有更新

在 PHPhotoLibrary 中禁用删除请求的确认

如何在 iOS9 中使用 PHPhotolibrary 将照片保存在带有元数据的相册中?

在 PHPhotoLibrary 删除资产中禁用删除请求的确认?

如何在混合代码 Objective-C/C++ 文件(.mm 文件)中使用 PHPhotoLibrary?

重置 [PHPhotoLibrary 授权状态]