1

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

4

1 回答 1

0

只是有一个我以前使用过的库,它运行良好,这个名为“ SDWebImage ”的库你可以通过一种方法简单地使用它:

[cell.ImgViewUser setImageWithURL:[NSURL URLWithString:@"http://www.domain.com/path/to/image.jpg"]
               placeholderImage:[UIImage imageNamed:@"placeholder.png"]];

它会自动缓存图像,并且仅支持从缓存中加载(如果需要)并自动处理内存警告。

于 2012-11-26T07:16:26.447 回答