Created
January 24, 2013 21:53
-
-
Save ArtSabintsev/4628265 to your computer and use it in GitHub Desktop.
How to properly remove an instance of UIWebView and avoid memory leaks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Destroy UIWebView | |
- (void)destroyWebView | |
{ | |
[self.webView loadHTMLString:@"" baseURL:nil]; | |
[self.webView stopLoading]; | |
[self.webView setDelegate:nil]; | |
[self.webView removeFromSuperview]; | |
[self setWebView:nil]; | |
[[NSURLCache sharedURLCache] removeAllCachedResponses]; | |
[[NSURLCache sharedURLCache] setDiskCapacity:0]; | |
[[NSURLCache sharedURLCache] setMemoryCapacity:0]; | |
} | |
// UIWebViewDelegate Methods | |
- (void) webViewDidFinishLoad:(UIWebView *)webView | |
{ | |
[[NSUserDefaults standardUserDefaults] setInteger:0 forKey:@"WebKitCacheModelPreferenceKey"]; | |
} | |
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType | |
{ | |
return YES; | |
} |
It does not work very well.
Not work for me.
I have no idea if this works anymore. I put this solution together in early 2013, from a project I worked on in 2012.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is it still the case ?
Why do you use webView:shouldStartLoadWithRequest:navigationType: ?