自定义 uitableviewcell 在 LazyTableImages 中不起作用

Posted

技术标签:

【中文标题】自定义 uitableviewcell 在 LazyTableImages 中不起作用【英文标题】:Custom uitableviewcell not working in LazyTableImages 【发布时间】:2012-11-26 06:37:38 【问题描述】:

我在我的应用程序中使用自定义 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 时,它正在工作,知道吗?

【问题讨论】:

“不工作”是什么意思?具体一点。 tableview 没有完全空白 检查你是否真的在lazyLoading中获取数据... 看我的问题:***.com/questions/13121010/… 【参考方案1】:

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

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

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

【讨论】:

以上是关于自定义 uitableviewcell 在 LazyTableImages 中不起作用的主要内容,如果未能解决你的问题,请参考以下文章

自定义 UITableViewCell 按钮单击

在 Storyboard 中设计的自定义 UITableViewCell 中的自定义 UIView

在 UITableView 中定义高度的自定义 UITableViewCell

自定义 UITableViewCell 的 iOS 单元测试

在运行时重新加载自定义 UITableViewCell 的 Nib

如何在自定义 UITableViewCell 中增加 Label 的高度