gpt4 book ai didi

iphone - 在可重用表格单元格中使用 NSCache 和 dispatch_async 的正确方法是什么?

转载 作者:技术小花猫 更新时间:2023-10-29 10:44:03 25 4
gpt4 key购买 nike

我一直在寻找一种明确的方法来做到这一点,但没有找到任何地方可以给出一个例子并很好地解释它。我希望你能帮助我。

这是我正在使用的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

static NSString *CellIdentifier = @"NewsCell";
NewsCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

// Configure the cell...

NewsItem *item = [newsItemsArray objectAtIndex:indexPath.row];

cell.newsTitle.text = item.title;

NSCache *cache = [_cachedImages objectAtIndex:indexPath.row];

[cache setName:@"image"];
[cache setCountLimit:50];

UIImage *currentImage = [cache objectForKey:@"image"];

if (currentImage) {
NSLog(@"Cached Image Found");
cell.imageView.image = currentImage;
}else {
NSLog(@"No Cached Image");

cell.newsImage.image = nil;

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, (unsigned long)NULL), ^(void)
{
NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:item.image]];
dispatch_async(dispatch_get_main_queue(), ^(void)
{
cell.newsImage.image = [UIImage imageWithData:imageData];
[cache setValue:[UIImage imageWithData:imageData] forKey:@"image"];
NSLog(@"Record String = %@",[cache objectForKey:@"image"]);
});
});
}

return cell;
}

缓存为我返回 nil。

最佳答案

Nitin 很好地回答了关于如何使用缓存的问题。问题是,原始问题和 Nitin 的回答都存在您使用 GCD 的问题,(a) 无法控制并发请求的数量; (b) 分派(dispatch)的 block 不可取消。此外,您正在使用不可取消的 dataWithContentsOfURL

参见 WWDC 2012 视频 Asynchronous Design Patterns with Blocks, GCD, and XPC ,第 7 节,“分离控制和数据流”,视频中大约 48 分钟讨论了为什么这是有问题的,即如果用户快速向下滚动列表到第 100 项,所有其他 99 个请求都将排队向上。在极端情况下,您可以用完所有可用的工作线程。而且 iOS 只允许五个并发网络请求,所以用完所有这些线程是没有意义的(如果一些分派(dispatch)的 block 启动无法启动的请求,因为有超过五个,你的一些网络请求将开始失败).

因此,除了当前异步执行网络请求和使用缓存的方法之外,您还应该:

  1. 使用操作队列,它允许您 (a) 限制并发请求的数量; (b) 开放取消操作的能力;

  2. 也使用可取消的NSURLSession。您可以自己执行此操作,也可以使用 AFNetworking 或 SDWebImage 等库。

  3. 当一个单元格被重复使用时,取消对前一个单元格的任何待处理请求(如果有的话)。

这是可以做到的,我们可以向您展示如何正确地做到这一点,但代码量很大。最好的方法是使用许多 UIImageView 类别之一,它可以进行缓存,但也可以处理所有这些其他问题。 SDWebImageUIImageView 类别很不错。它极大地简化了您的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *cellIdentifier = @"NewsCell"; // BTW, stay with your standard single cellIdentifier

NewsCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier indexPath:indexPath];

NewsItem *item = newsItemsArray[indexPath.row];

cell.newsTitle.text = item.title;

[cell.imageView sd_setImageWithURL:[NSURL URLWithString:item.image]
placeholderImage:[UIImage imageNamed:@"placeholder.png"]];

return cell;
}

关于iphone - 在可重用表格单元格中使用 NSCache 和 dispatch_async 的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19326284/

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