我在 SO 和网络上环顾四周,并没有找到具体的答案。
很简单,我有一个从 Flickr 加载图像信息的表格。我想在每个单元格的左侧显示图像的缩略图。
为了在不阻塞主(UI)线程的情况下做到这一点,我使用了块:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"top50places";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
//getting the selected row image
NSDictionary* currentImageDictionary=[self.topfifty objectAtIndex:indexPath.row];//topFifty is an array of image dictionaries
//creating the download queue
dispatch_queue_t downloadQueue=dispatch_queue_create("thumbnailImage", NULL);
dispatch_async(downloadQueue, ^{
UIImage *downloadedThumbImage=[self getImage:currentImageDictionary] ;
//Need to go back to the main thread since this is UI related
dispatch_async(dispatch_get_main_queue(), ^{
cell.imageView.image = downloadedThumbImage ;
});
});
dispatch_release(downloadQueue);
return cell;
}
现在这行不通了。因为返回单元格可能会在执行块之前发生。但同时,我无法返回主队列块中的单元格,因为该块不接受返回参数。
我想避免创建 UITableViewCell 子类。
任何使用块的简单答案?
谢谢九巴