异步图像使用Storyboard&amp ;;在UITableView中下载iOS5的

时间:2012-01-24 20:41:09

标签: iphone uitableview asynchronous uiimageview storyboard

我有一个UITableView,我想异步下载图像。 如何使用ios5和故事板?

提前致谢

1 个答案:

答案 0 :(得分:1)

我遇到了同样的问题,我所做的是从https://github.com/rs/SDWebImage获取SDWebImage,自己打开项目,然后手动将其升级到Objective C ARC(Refactor - >转换为Objective C ARC)。

当它完成转换后,我将各个文件添加到我的项目中,它就像一个魅力。我只是

#import "UIImageView+WebCache.h"

然后在我的 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath方法中,它像这样:

[cell.videoImageView setImageWithURL:[NSURL URLWithString:thumbnailURLString]];

简单!