我有一种从服务器下载一些图片的方法。我使用异步块(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


}

最佳答案

在执行任何块代码之前,您都已击中“最终” NSLog调用。您所有的图像加载内容都包装在dispatch_async中。它异步执行,而NSLog立即被调用。

我认为您最好的做法是将imgtmp传递给某些持久对象。也许您的视图控制器可以具有以下属性:

@property (nonatomic, copy) NSArray *images;


并且可以在将文本分配给_tvStatus的同一块中进行分配。

10-08 13:05