我正在使用 Kingfisher 下载和缓存我的图像。我正在使用 CustomImageView 下面扩展 ImageView 的自定义类。我还使用我的自定义UITableViewCell在我的 CustomCell 类文件的didSet属性中调用 loadImage 方法。
下面的方法 loadImage 是所有魔法发生的地方。
class CustomImageView : UIImageView {
var lastUrlLoaded: String?
func loadImage(url:String) {
lastUrlLoaded = url
ImageCache.default.retrieveImage(forKey: url, options: nil) { (image, cacheType) in
if let image = image {
self.image = image
return
}
else {
guard let url = URL(string: url) else { return }
self.kf.setImage(with: url, placeholder: nil, options: nil, progressBlock: nil) {
(image, error, cacheTye, _) in
if let err = error {
self.kf.indicatorType = .none
DispatchQueue.main.async {
self.image = #imageLiteral(resourceName: "no_image_available")
}
print ("Error loading Image:", err)
return
}
if url.absoluteString != self.lastUrlLoaded { return }
if let image = image {
ImageCache.default.store(image, forKey: url.absoluteString)
DispatchQueue.main.async {
self.image = image
}
}
}
}
}
}
// Custom TableViewCell -- NewsCell.file
class NewsCell: UITableViewCell {
var article: Article? {
didSet{
guard let image_url = article?.image_url else { return }
_image.kf.indicatorType = .activity
_image.loadImage(url: image_url, type: "news")
}
}
}
// METHOD in my NewsController
override func tableView(_ tableView: UITableView, cellForRowAt indexPath:
IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: cellId, for: indexPath) as! NewsCell
cell.article = articles[indexPath.item]
return cell
}
我在快速滚动单元格时遇到问题,一些已加载的图像被用于错误的单元格。我已经研究并阅读了其他帖子,但没有答案对我有帮助。我了解它正在处理后台任务,但不确定如何解决它。如果有人可以帮助或指出我正确的方向,将不胜感激。
我在 stackoverflow 上看到并尝试过的解决方案:
- prepareForReuse 在自定义单元格中将图像设置为零。
- 在 cellforrowatindexpath 将图像设置为 nil。