我们在项目中,经这个常用到UIWebView控件来加载一些网页。但是加载的内容又不受我们控制,如果网页的信息量过大,或者太多的占大内存的资源的时候,很容易使得内存暴涨,控制台输出memory warning,如果我们不作处理的话,就可能导致程序crash掉。通过网上一些资料的查询,总结了几个方法,如有不正确的地方、不恰当的地方,欢迎指出,一起学习😀
1.在每次页面读取完成之后的Delegate方法中关闭缓存。
[[NSUserDefaults standardUserDefaults] setInteger:0 forKey:@"WebKitCacheModelPreferenceKey"];
[[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"WebKitDiskImageCacheEnabled"];
[[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"WebKitOfflineWebApplicationCacheEnabled"];
[[NSUserDefaults standardUserDefaults] synchronize];
2.在收到系统的内存警告时候。
[[NSURLCache sharedURLCache] removeAllCachedResponses];
3.在离开的时候释放掉
webView.delegate = nil;
[webView loadHTMLString:@"" baseURL:nil];
[webView stopLoading];
[webView removeFromSuperview];
[[NSURLCache sharedURLCache] removeAllCachedResponses];
[webView release];