我在我的应用程序中使用自定义UITableView
单元格,并且我已经集成了LazyTableImages示例代码以在tableview中下载图像。我在
- (void)appImageDidLoad:(NSIndexPath *)indexPath
{
IconDownloader *iconDownloader = [imageDownloadsInProgress objectForKey:indexPath];
if (iconDownloader != nil)
{
CustomTblViewCell *cell = (CustomTblViewCell *)[self.TblView cellForRowAtIndexPath:iconDownloader.indexPathInTableView];
// Display the newly loaded image
cell.ImgViewUser.image = iconDownloader.appRecord.m_strImage;
}
// Remove the IconDownloader from the in progress list.
// This will result in it being deallocated.
[imageDownloadsInProgress removeObjectForKey:indexPath];
[m_CtrlTblViewFacetoface reloadData ];
}
上面的代码没有加载任何数据,但是当我使用UITableView
单元而不是Customcell时,它正在工作,不知道吗?
答案 0 :(得分:0)
只是有一个我之前使用过的库,它很适合这个名为“ SDWebImage”的库,你可以简单地通过一种方法使用它:
[cell.ImgViewUser setImageWithURL:[NSURL URLWithString:@"http://www.domain.com/path/to/image.jpg"]
placeholderImage:[UIImage imageNamed:@"placeholder.png"]];
它会自动缓存图像,它只支持从缓存加载(如果需要)并自动处理内存警告。