Kingfisher使用大图缓存

Kingfisher是王巍(onevcat)大佬所写,主要以swift语言实现。

在UIImageView setImage方法中,图片默认缓存到磁盘和内存,大量网络大图缓存到内存会造成内存过大,导致内存资源不足而崩溃。

方法一:设置缓存最大值

可以设置MemoryStorage.config.totalCostLimit或countLimit

方法二:内存不缓存

imageView.kf.setImage(with: resource, options: [.memoryCacheExpiration(.expired)])

你可能感兴趣的:(Kingfisher使用大图缓存)