1

我正在使用Kingfisher下载和缓存远程图像。

我想将这些图像渲染成UITableViewCell

目前图像在我滚动之前不会显示。

我怀疑这是因为初始图像大小为零,一旦我滚动单元格就会重绘并渲染图像。

为了否定这个问题,我调用 tableView.reloadRows(at: [indexPath], with: .none)了 Kingfisher 的完成处理程序

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    let cell = tableView.dequeueReusableCell(withIdentifier: "FeedTableViewCellId", for: indexPath) as! FeedGifCell

    let url = URL(string: items[indexPath.item])!
    let imageView = ImageResource(downloadURL: url, cacheKey: "\(url)-imageview")
    let placeHolderImage = UIImage.from(hex: "ffffff").resize(width: 1, height: 190)
    cell.gifImage.kf.setImage(with: imageView, placeholder: placeHolderImage) { _ in
        tableView.reloadRows(at: [indexPath], with: .none)
    }

    return cell
}

我已经应用了一个固定高度和宽度的简单占位符,以便在应用图像之前为单元格提供一些高度。

我不确定这是最好的方法,我不喜欢这样称呼tableView.reloadRows(at: [indexPath], with: .none)它有点……hacky。

此外,在重绘单元格之前,我有空白区域、占位符,然后在应用正确的图像/大小时跳转。

在应用图像之前,是否可以简单地阻止单元格可见?

4

1 回答 1

2

不!在某个单元格中的图像完成下载后,您不必以任何方式重新加载 tableView。除此之外,你做的一切都是正确的。我也用翠鸟。

但在未来,你可以在你的单元格类中创建一个函数,比如setupCell(_ imageURL: URL?). 无论如何,继续,在你的cellForRow方法中,就像这样:

cell.gifImage.kf.setImage(with: imageView, placeholder: placeHolderImage, completionHandler: nil)

现在,如果没有下载图像或者您没有要作为URL对象的图像 URL 字符串,您可以在 Kingfisher 的错误块中捕获它,然后您需要将error image(a UIImage) 对象传递给您的对象,imageView这样就不会有重复图像。

例如,我的单元格setupCell()函数中有以下内容:

    if let url = vendor.image?.URLEscaped {
        let resource = ImageResource(downloadURL: url, cacheKey: url.absoluteString)
        self.imageView_Vendor.kf.setImage(with: resource, options: [.transition(.fade(0.2)), .cacheOriginalImage])
        return
    }

    self.imageView_Vendor.image = nil

我希望这有帮助!

编辑:

对于图像高度的处理,这可能会有所帮助:https ://stackoverflow.com/a/52787062/3231194

于 2019-01-18T07:09:14.137 回答