我正在使用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。
此外,在重绘单元格之前,我有空白区域、占位符,然后在应用正确的图像/大小时跳转。
在应用图像之前,是否可以简单地阻止单元格可见?