在AppDelegate.m 中加入这个方法
pragma mark - 注意:收到内存警告时调用,
-
(void)applicationDidReceiveMemoryWarning:(UIApplication *)application
{
// 1. 停止所有下载
[[SDWebImageManager sharedManager] cancelAll];// 2. 清除缓存
[[SDWebImageManager sharedManager].imageCache clearMemory];
}