我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 时,它正在工作,知道吗?