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)

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

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

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

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.