摘译:MHLazyTableImages异步加载图片到TableView(LazyTableImages升级版)

为了演示如何使用MHLazyTableImages这个类,可以修改苹果官方的LazyTableImages例子项目。现在图片下载的逻辑由MHLazyTableImages和MHImageCache类来处理。TableViewController只做创建一个MHLazyTableImages实例和连接其数据模型与它的表示图。

放置图片到表格单元中:调用addLazyImageForCell:withIndexPath:方法。
这个方法首先会查看是否图片已经存在于缓存中,如果没有则下载之。

复制代码
- (UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath
{
    UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:...];
    if (cell == nil)
        cell = [[[UITableViewCell alloc] initWithStyle:...];
 
    cell.textLabel.text = ...;
    [lazyImages addLazyImageForCell:cell withIndexPath:indexPath];
}
复制代码

当然,你需要告诉MHLazyTableImages关于图片的URL,就发生在一个委托的回调方法中。

- (NSURL*)lazyImageURLForIndexPath:(NSIndexPath*)indexPath
{
    AppRecord* appRecord = [self.entries objectAtIndex:indexPath.row];
    return [NSURL URLWithString:appRecord.imageURLString];
}

用委托而非直接告诉MHLazyTableImages中单元格应该的URL——是为了适应滚动。当正在滚动时,我们不希望图片还装载。我们将推迟下载,直到用户停止滚动。lazyImageURLForIndexPath:新的可见行会自动调用。


你可能感兴趣的:(url)