#warning cc ------ 内存警告的时候调用,取消 SDWebImage 下载图片,清出内存中所有的图片
- (void)applicationDidReceiveMemoryWarning:(UIApplication *)application{
SDWebImageManager *mgr = [SDWebImageManager sharedManager];
// 1.取消下载
[mgr cancelAll];
// 2.清除内存中的所有图片
[mgr.imageCache clearMemory];
}
网友评论