SDWebImage框架清除内存中的缓存图片

时间:2022-09-14 22:45:31
#import "SDWebImageManager.h"

AppDelegate.m

- (void)applicationDidReceiveMemoryWarning:(UIApplication *)application
{
    
    //因为我们用SDWebImage框架下载的图片
    
    //停止下载所有图片
    [[SDWebImageManager sharedManager] cancelAll];
    //清除内存中的图片
    [[SDWebImageManager sharedManager].imageCache clearMemory];
}