7

我似乎遇到了一个随机问题,我不知道为什么会发生。我似乎无法让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];
}
4

1 回答 1

12

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

这是我的一个视图控制器的完整代码:

#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 的 Simulator 后面,我在控制台中看到“Here”——这是意料之中的,因为当库在授权后“生效”时,我们会收到更改通知。这正是观察者应该表现的方式。

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

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

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

于 2015-06-09T04:14:56.757 回答