我有一个从服务器下载一些照片的方法。我有使用async块(NSMutableArray * imgtmp)定义的下载数据的缓冲区,但还没有弄清楚如何将数组从那里取出。访问imgtmp以返回其内容或从中设置实例变量的最佳方法是什么?
我一直在寻找Apple Block docs,但我不能在正确的部分。我是否需要以某种方式使用__block
关键字声明imgtmp?我试过了,但imgtmp在街区外仍然是空的。谢谢!
编辑:使用工作模式更新代码
- (void) loadImages
{
// temp array for downloaded images. If all downloads complete, load into the actual image data array for tablerows
__block NSMutableArray *imgtmp = [[NSMutableArray alloc] init];
dispatch_async(dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_LOW, 0),
^{
int error = 0;
int totalitems = 0;
NSMutableArray *picbuf = [[NSMutableArray alloc] init];
for (int i=0; i < _imageURLS.count;i++)
{
NSLog(@"loading image for main image holder at index %i",i);
NSURL *mynsurl = [[NSURL alloc] initWithString:[_imageURLS objectAtIndex:i]];
NSData *imgData = [NSData dataWithContentsOfURL:mynsurl];
UIImage *img = [UIImage imageWithData:imgData];
if (img)
{
[picbuf addObject:img];
totalitems++;
}
else
{
NSLog(@"error loading img from %@", [_imageURLS objectAtIndex:i]);
error++;
}
}// for int i...
dispatch_async(dispatch_get_main_queue(),
^{
NSLog(@"_loadedImages download COMPLETE");
imgtmp = picbuf;
[_tvStatus setText: [NSString stringWithFormat:@"%d objects have been retrieved", totalitems]];
NSLog (@"imgtmp contains %u images", [imgtmp count]);
});// get_main_queue
});// get_global_queue
}
答案 0 :(得分:1)
你正在击中&#34; final&#34;在任何块代码执行之前NSLog
调用。所有图像加载内容都包含在dispatch_async中。它是异步执行的 ,而立即调用NSLog。
我认为你要做的最好的事情就是将imgtmp传递给一些持久对象。也许您的视图控制器可以具有以下属性:
@property (nonatomic, copy) NSArray *images;
并且您可以在将文本分配到_tvStatus
的同一块中指定它。