I have a problem with memory management.
I am developing an application that makes heavy use of UIWebView. This app generates dynamically lots of UIWebViews while lo
Try adding
[webView loadHTMLString: @"" baseURL: nil];
right before you release the webview. For a leak in 4.2.1 relating to displaying a PDF in a UIWebView this solves most of the leak problems for me.