我正在使用 PHPhotoLibrary 在 iPhone 中为我的应用程序相册保存和获取图像。
当我的相册有很多图像(大约 5,000 张静止图像)时,
我的应用程序从网络下载了 10 张图片,然后保存到相机胶卷并添加到我的应用程序的相册中。
同时,应用观察 photoLibraryDidChange 回调以知道添加的图像,但它只通知 5 个插入的图像。
我按下 HOME 按钮完成我的申请,并在 Photo App 中检查相机胶卷和我的相册。 正确有 5010 张图片。
也许 photoLibraryDidChagne 没有通知所有更改?
我的代码如下。
- (void)photoLibraryDidChangePHChange *)changeInstance
{
// dispatch main queue
dispatch_async(dispatch_get_main_queue(), ^{
[self handleChangedLibrary:changeInstance];
});
}
- (void)handleChangedLibraryPHChange *)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 张图片没有通知。
Best Answer-推荐答案 strong>
我修复了代码中的错误点,并确认修改后问题没有发生。
错误点:
- 在某些情况下,我的代码'return;'在回调中获取 Assets 集合之前。
- 我应该从
fetchResultChangeDetails.fetchResultAfterChanges 获取新结果,而不是 [PHAsset fetchAssetsInAssetCollectionptions:]
我引用了以下 Apple 的代码进行修改。
PHPhotoLibraryChangeObserver
https://developer.apple.com/library/ios/documentation/Photos/Reference/PHPhotoLibraryChangeObserver_Protocol/
我的固定代码如下所示。谢谢。
- (void)handleChangedLibraryPHChange *)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];
}
}
}
}
关于ios - 在 PHPhotoLibrary 中,photoLibraryDidChange 不会通知所有更新,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/38591648/
|