占位符图像作为缩略图(模糊),直到加载实际图像

时间:2018-06-28 04:58:15

标签: swift placeholder blur kingfisher

我有下面的代码,一旦用户选择它就可以显示全屏图像。

  

fullImage.kf.setImage(with:url)

在下载实际图像的过程中,我希望将占位符显示为相同的图像,但缩略图尺寸会拉长。该缩略图已由Kingfisher库缓存,同时先前显示了缩略图。

当我显示不带KF库的图像时,通过使用常规的iOS UIImage下载器,它会显示拉伸的缩略图的模糊预览,然后显示实际图像。使用KF库如何实现?

2 个答案:

答案 0 :(得分:0)

您可以使用如下所示的占位符图像

fullImage.kf.setImage(with: url, placeholder: UIImage(named: "placeholder"), options: nil, progressBlock: nil, completionHandler: nil)

但是要显示缩略图,您必须单独下载缩略图。

答案 1 :(得分:0)

如果您希望缩略图成为网络上的图像,则可以执行人们建议的on GitHub

let cacheImage = ImageCache.default.retrieveImageInDiskCache(forKey: "cache")

let resource = ImageResource(downloadURL: imageURL, cacheKey: "cache")

imageView.kf.setImage(with: resource, placeholder: cacheImage, options: [.keepCurrentImageWhileLoading], progressBlock: nil, completionHandler: nil)

不过,您需要首先找到一种下载缩略图的方法,该方法可以通过多种方式完成,例如使用ImagePrefetcher