gpt4 book ai didi

objective-c - 枚举 ALAssetsLibrary

转载 作者:行者123 更新时间:2023-11-28 17:35:16 25 4
gpt4 key购买 nike

在我的应用程序中,我允许用户拍照以关联给定任务。我的方法是使用这个 category使用自定义名称创建一个 ALAssetsGroup 并将照片保存到其中。当我去抓取所有这些照片并将它们显示为缩略图时,问题就出现了。我正在这样获取 Assets :

- (void)setImagesForTask:(Task *)task {
//clear images associated with the task so we don't double up.
[task clearImages];
//static instance of ALAssetsLibrary
lib = [JobStore defaultAssetsLibrary];
dispatch_queue_t queue = dispatch_get_main_queue();
dispatch_async(queue, ^(void){
[lib enumerateGroupsWithTypes:ALAssetsGroupAlbum
usingBlock:^(ALAssetsGroup *group, BOOL *stop) {
NSLog(@"group:%@", group);
//find my custom photo album and if it's there, enumerate through it.
if (group != nil && [[group valueForProperty:ALAssetsGroupPropertyName] isEqualToString:
[NSString stringWithFormat:@"Media for %@", task.title]]) {
if (group.numberOfAssets != 0) {
[group enumerateAssetsUsingBlock:^(ALAsset *result, NSUInteger index, BOOL *stop) {
if (result != nil) {
CGImageRef imgRef = [[result defaultRepresentation] fullScreenImage];
UIImage *img = [UIImage imageWithCGImage:imgRef];
//methods to resize the image and get PNG representations…
[task setThumbnailDataFromImage:img];
[task setLargeImageDataFromImage:img];
NSLog(@"saved image to: %@", group);
} else if (result == nil){
NSLog(@"enumeration of assets ended");
}
}];
}
//if the group isn't there...
} else if (group == nil) {
//this method removes a UIView with a UIActivityIndicatorView that appears while enumeration occurs.
[self performSelectorOnMainThread:@selector(removeView)
withObject:nil
waitUntilDone:NO];
NSLog(@"enumeration of groups ended");
}}
failureBlock:^(NSError *error) {
NSLog(@"FAILURE");
}];
});
JobStore *js = [JobStore defaultStore];
[js saveChanges];
}

这是我得到的异常:

2012-04-02 10:05:26.585 MyApp[2746:7d3b] *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSOrderedSet enumerateObjectsAtIndexes:options:usingBlock:]: index 0 beyond bounds for empty ordered set'

异常在 enumerateAssetsUsingBlock: 方法中抛出。如果我将照片添加到一项任务,导航到另一项任务并将照片添加到该任务,这种情况尤其容易发生。一件奇怪的事情是,在抛出异常之前,我的日志中有这个:

2012-04-02 10:05:26.580 MyApp[2746:707] group:ALAssetsGroup - Name:Media for (current task), Type:Album, Assets count:1

所以 Assets 组实际上并不是空的,但是当我尝试枚举其中的 Assets 时,我的应用程序似乎认为那里什么也没有。在我看来,也许是因为我嵌套了这些枚举和/或因为 block 在后台执行但方法立即返回,所以我试图在我的应用程序知道它包含任何内容之前枚举 Assets 组。有没有最好的方法来解决这个问题?我认为有一些基本的东西我不了解这些方法的 block 是如何执行的。任何投入将不胜感激。

最佳答案

我发现尝试使用上述枚举从库中获取 Assets 并尝试基于此更新 UI 是完全不可靠的。我重新考虑了我的设计,现在我在应用程序启动时进行此枚举,以确保我拥有之前拍摄的所有照片。但是,当我拍一张新照片时,我只是将其添加到 NSMutableArray 并从该数组更改我的 UI,而不是尝试从 ALAssetsLibrary 重新收集。一旦我的用户界面更新,我就在后台保存到我的自定义相册。这工作可靠,并且比尝试进行此枚举要快得多。

关于objective-c - 枚举 ALAssetsLibrary,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9980787/

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