IOS加载图片越来越多会导致内存警报,此时应该暂停下载操作清除缓存。
- (void)applicationDidReceiveMemoryWarning:(UIApplication *)application
{
//停止下载所有的图片
[[SDWebImageManager sharedManager] cancelAll];
//清除内存中的图片
[[SDWebImageManager sharedManager].imageCache clearMemory];
}