參考文章:https://blog.csdn.net/fengzhixinfei/article/details/87912102
在APPDelegate中設(shè)置相關(guān)參數(shù)。
- (void)imageLoadingSettings {
? ? [SDImageCache sharedImageCache].config.maxCacheAge = 3600 * 24 * 7;
? ? [SDImageCache sharedImageCache].maxMemoryCost = 1024 * 1024 * 20;
? ? [SDImageCache sharedImageCache].config.shouldCacheImagesInMemory = NO;
? ? [SDImageCache sharedImageCache].config.shouldDecompressImages = NO;
? ? [SDWebImageDownloader sharedDownloader].shouldDecompressImages = NO;
? ? [SDImageCache sharedImageCache].config.diskCacheReadingOptions = NSDataReadingMappedIfSafe;
}
在使用時加載方法的options中設(shè)置SDWebImageScaleDownLargeImages
[_billImageView sd_setImageWithURL:url placeholderImage:image options:SDWebImageRetryFailed|SDWebImageScaleDownLargeImages|SDWebImageRefreshCached];