问题说明
使用SDWebImage同时加载大量的高分辨率图片。如使用UITableView和UICollectionView展示图片列表时,运营人员上传的图片分辨率过高,导致应用内存占用率爆表引起应用崩溃问题。
解决方法
在加载图片的方法中加入options: SDWebImageOptions.scaleDownLargeImages
示例:
UIImageView.sd_setImage(with: url, placeholderImage: placeholderImage, options: SDWebImageOptions.scaleDownLargeImages)