0

大家好,我的应用程序有问题......在我的视图控制器 hp 中,带有一个自定义单元格的 CollectionView 应该返回我的 iPhone 应用程序图片的“相机胶卷”部分中的所有照片。

现在我已经完成了在自定义单元格中的 ImageView 中显示照片的所有步骤,到目前为止我没有问题......我的问题是当我开始滚动浏览照片时,上传照片非常慢,并且在应用程序崩溃,让我在日志中返回此错误..

[GatekeeperXPC] 与 assetsd 的连接被中断或 assetsd 死亡 25/02/2017 20:[通用] 创建未知类型的图像格式是错误的

你能告诉我我在收藏视图中显示图片的方式是否正确吗?我哪里做错了?因为我的应用程序崩溃了?

谢谢大家给我的任何帮助

这是我使用的代码

- (void)viewDidLoad {
    [super viewDidLoad];
    self.nameTextField.delegate = self;
    self.emailTextField.delegate = self;
    self.passwordTextField.delegate = self;
    self.collectionView.delegate = self;
    self.collectionView.dataSource = self;
    _collectionView.backgroundColor = [UIColor clearColor];
}

-(void)viewDidAppear:(BOOL)animated {
    [super viewDidAppear:animated];
    [_nameTextField becomeFirstResponder];
    [self queryImage];


 }

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

    PHFetchResult *collection = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeSmartAlbum subtype:PHAssetCollectionSubtypeSmartAlbumUserLibrary options:fetchOptions];

    if (collection.firstObject != nil ) {
        _photoFound = YES;
        _assetCollection = collection.firstObject;

    } else {

    }

    _photoAsset = [PHAsset fetchAssetsInAssetCollection:_assetCollection options:nil];
    [_collectionView reloadData];
}

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
    return CGSizeMake(80,80);
}

-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {

    NSUInteger count = 0;
    if (_photoAsset != nil) {
        count = [_photoAsset count];
    }
    return count;
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)cv cellForItemAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *reuseIdentifier = @"imageCell";

    UPCameraRollCollectionViewCell* cell = [cv dequeueReusableCellWithReuseIdentifier:reuseIdentifier forIndexPath:indexPath];
    cell.backgroundColor = [UIColor redColor];


    PHAsset *asset = [_photoAsset objectAtIndex:indexPath.item];

PHImageManager *imageManager = [PHImageManager defaultManager];
    [imageManager requestImageForAsset:asset targetSize:PHImageManagerMaximumSize contentMode:PHImageContentModeAspectFill options:nil resultHandler:^(UIImage * _Nullable result, NSDictionary * _Nullable info) {

[cell setThumbnailImage:result];

}];


    return cell;
}
4

1 回答 1

0

使用PHCachingImageManager

苹果有一个例子,它准确地展示了如何做你所追求的事情。集合视图正是预期的用例。

于 2017-02-25T20:07:17.307 回答