gpt4 book ai didi

ios - 未调用 PHPhotoLibrary 更改观察器

转载 作者:可可西里 更新时间:2023-11-01 03:45:31 25 4
gpt4 key购买 nike

我似乎遇到了一个我不知道为什么会发生的随机问题。我似乎无法让观察者调用 photoLibraryDidChange:(PHChange *)changeInstance。我做了几个空白项目,所有项目都在证明这个问题,更改观察者有时会在初始应用程序安装时被调用,但在我在照片应用程序中执行更改后永远不会被调用。我也重置了模拟器无济于事。如果能提供任何帮助,我将不胜感激。

代码:

#import <UIKit/UIKit.h>
#import <Photos/Photos.h>

@interface ViewController : UIViewController <PHPhotoLibraryChangeObserver>

@end

- (void)viewDidLoad
{
[super viewDidLoad];

[PHPhotoLibrary requestAuthorization:^(PHAuthorizationStatus status)
{
if (status == PHAuthorizationStatusAuthorized)
{
[PHPhotoLibrary.sharedPhotoLibrary registerChangeObserver:self];

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0),^
{
[self setup];
});
}
}];
}

- (void)setup
{
PHFetchOptions *fetchOptions = [[PHFetchOptions alloc]init];

fetchOptions.wantsIncrementalChangeDetails = YES;

PHFetchResult *smartAlbumsFetchResult = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeSmartAlbum subtype:PHAssetCollectionSubtypeAny options:fetchOptions];

for (PHAssetCollection *sub in smartAlbumsFetchResult)
{
PHFetchResult *fetch = [PHAsset fetchAssetsInAssetCollection:sub options:fetchOptions];
}
}

- (void)photoLibraryDidChange:(PHChange *)changeInstance
{
NSLog(@"Not called");
}

- (void)dealloc
{
[PHPhotoLibrary.sharedPhotoLibrary unregisterChangeObserver:self];
}

最佳答案

我认为您的测试方式有问题。这对我来说可以。这是我所做的。

这是我的一个 View Controller 的全部代码:

#import <UIKit/UIKit.h>
@import Photos;
#import "ViewController.h"

@interface ViewController() <PHPhotoLibraryChangeObserver>
@end
@implementation ViewController : UIViewController
- (void)viewDidLoad
{
[super viewDidLoad];
[PHPhotoLibrary requestAuthorization:^(PHAuthorizationStatus status) {
if (status == PHAuthorizationStatusAuthorized) {
[PHPhotoLibrary.sharedPhotoLibrary registerChangeObserver:self];
}
}];
}
- (void)photoLibraryDidChange:(PHChange *)changeInstance
{
NSLog(@"Here");
}
@end
  • 我在模拟器中运行该应用程序。请求授权。我授权。在运行 Xcode 的模拟器后面,我在控制台中看到了“这里”——这是预料之中的,因为当库在授权后“生效”时,我们会收到更改通知。这正是观察者应有的行为方式。

  • 仍然在模拟器中,我按 Shift-Command-H 转到跳板。我切换到“照片”应用并删除了一张照片。

  • 在模拟器中,我按了两次 Shift-Command-H 以进入应用程序切换器。

  • 在模拟器中,我单击仍在运行的测试应用程序以返回到它。在 Xcode 的模拟器后面,我在控制台中看到“这里”,因为我们不在的时候,一张照片被删除了。同样,这正是观察者的行为方式。

关于ios - 未调用 PHPhotoLibrary 更改观察器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30722590/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com