清空图片缓存
2017-05-09 本文已影响18人
iOS菜鸟攻城狮
// 清理内存[[SDImageCache sharedImageCache] clearMemory];// 清理webview 缓存NSHTTPCookieStorage*storage = [NSHTTPCookieStoragesharedHTTPCookieStorage];for(NSHTTPCookie*cookiein[storage cookies]) { [storage deleteCookie:cookie];}NSURLSessionConfiguration*config = [NSURLSessionConfigurationdefaultSessionConfiguration];[config.URLCache removeAllCachedResponses];[[NSURLCachesharedURLCache] removeAllCachedResponses];// 清理硬盘[[SDImageCache sharedImageCache] clearDiskOnCompletion:^{ [MBProgressHUD hideAllHUDsForView:self.view animated:YES]; [self.tableView reloadData];}];