我有一个UITableView,我想异步下载图像。 如何使用ios5和故事板?
提前致谢
答案 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]];
简单!