Please help! Have been staring at this for 12 hours; and have looked online and can't find solution.

In my application, I use 2 UIView controls in separate pages/controllers:

  • UIImageView (retrieve data via NSData dataWithContentsOfUrl)
  • UIWebView

Just to isolate my code, and make it easier to explain, I created a new view based project called "MyTestApplication"

1 - I added a simple NSData dataWithContentsOfUrl in the delegate function.

NSData *imageData = [NSData dataWithContentsOfURL:
  [NSURL URLWithString:@"http://www.google.com/intl/en_ALL/images/logo.gif"]];

(Nothing to release here since it's all using convenience functions)

alt text

View Image

2 - Run it to verify no leaks (as expected)

alt text

View Image

3 - Open the ViewController.xib and simply add a UIWebView from the library (no need to wire it up)

alt text

View Image

4 - Run it to verify there are leaks! (why???)

alt text

View Image

What am I doing wrong? Please help!

Why would NSData cause memory leak if I'm using UIWebView? I just don't get it. Thanks.

link|improve this question
feedback

3 Answers

I think this is what's happening:

When ViewController.xib is loaded, an instance of UIWebView is allocated and initialized. Since you're not wiring it up anywhere, it's not getting released. I think you need to wire it up and release it in your backing View Controller's dealloc function. I remember having to manually release every object I created in a xib file.

link|improve this answer
feedback

I was also having trouble with leaks from NSData's dataWithContentsOfURL: in the iPhone simulator. I found that when I used the other convenience method (dataWithContentsOfURL:options:error:) I would not get the memory leak.

My code looked something like this:

NSURL *url = [NSURL URLWithString:urlString];
NSError *error = nil;
NSData *data = [NSData dataWithContentsOfURL:url
                                     options:0
                                       error:&error];

Link to documentation

link|improve this answer
Saw this same leak in OS 3.1.2 (on sim and 3GS). Your suggestion fixed it! Weird that NSDataReadingOptions is apparently not in the iPhone SDK? – Jason Nov 3 '09 at 16:32
feedback

Are you running Leaks on the Simulator? If so, caveat coder. The Simulator will leak memory where the iPhone hardware won't. No simulator is ever a perfect match for the exact behavior of your code on the device.

I would test on the device as well. I just did the same thing on a similar issue with UITableViewController which was leaking in the Sim but not on the phone.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown