I have a problem using UIWebViews, I've seen the same question here but there wasn't helpful answer. the question is here: http://stackoverflow.com/questions/2950907/uiwebview-memory-management . I will quote it:

I am developing an application that makes heavy use of UIWebView. This app generates dynamically lots of UIWebViews while loading content from my server. Some of these UIWebViews are quite large and have a lot of pictures.

If I use instruments to detect leaks, I do not detect any. However, lots of objects are allocated and I suspect that has to do with the UIWebViews.

When the webviews release because no longer needed, it appears that not all memory is released. I mean, after a request to my server the app creates an UITableView and many webviews (instruments say about 8Mb). When user tap back, all of them are released but memory usage only decrements about 2-3 Mb, and after 5-10 minutes using the app it crashes.

I have created simple test app and have the same results.

It's a tableView, I'm creating DetailsView like this:

DetailsVC *detailViewController = [[DetailsVC alloc] initWithNibName:@"DetailsVC" bundle:nil];
detailViewController.n = indexPath.row;
[self.navigationController pushViewController:detailViewController animated:YES];
[detailViewController release];

in DetailsVC I have a webView created in IB. I load html like this:

    NSString *urlAddress;
if (self.n == 0)
{
    urlAddress = @"http://www.google.com";
}
else 
{
    urlAddress = @"http://www.yahoo.com";
}

NSURL *url = [NSURL URLWithString:urlAddress];

NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];

[self.webView loadRequest:requestObj];

I also do:

- (void)viewDidUnload {
self.webView = nil;
}

That's it, every time I choose any webView in RootViewController I'm loosing 2-3 Mb of memory, Is there a solution to this problem?

Thanks.

link|improve this question

it seems like very old and well known problem, people are running into it since 2008 and still no solution(((( discussions.info.apple.com/thread.jspa?threadID=1729697 – Burjua Aug 27 '10 at 10:28
Ok, I found one idea how to work around this issue, it's described here:iphonedevsdk.com/forum/iphone-sdk-development/… . It't not a solution to a problem, but some kind of hack. I can't beleive that it's the only way to do it, any other thoughts? Thanks – Burjua Aug 27 '10 at 11:44
possible duplicate of Does UIWebView leak memory? – Brad Larson Aug 27 '10 at 15:20
Ok, thanks, but there is no solution there( – Burjua Aug 31 '10 at 9:46
feedback

2 Answers

Just check the following 1. Is u make the webview as property remove it 2. And put the following code in didFinishLaunchingWithOptions in Appdelegate

    NSURLCache *sharedCache = [[NSURLCache alloc] initWithMemoryCapacity:0 diskCapacity:0 diskPath:nil];
    [NSURLCache setSharedURLCache:sharedCache];
    [sharedCache release];

I think then ur problem is solved

link|improve this answer
Ok, thanks, I will try it – Burjua Sep 21 '10 at 17:11
No, unfortunately this doesn't help :(( – Burjua Sep 27 '10 at 11:04
feedback

I guess that since you set webview=nil, you loose any chance to release it

link|improve this answer
I tried with it and without it, it actually doesn't matter, it's being released, but but not only part of memory is freed – Burjua Aug 31 '10 at 9:44
1  
Setting a retain property to nil also releases the previous value. – Jon Tirsen Nov 14 '11 at 9:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.