Well One simple approach that works in UIWebView Optimization is pretty simple, and I found it effective in one of my applications. Creating new instances of UIWebView every time a user acts is not an acceptable solution and, most likely, the application crashes after several loads. Keep a single instance of UIWebView with which you can work with all applications, so you do not need to call ALLOC in UIWebView every time you want to load a web page. Just use the UIWebView loadRequest: method to change the URL you want the user to point to. Hope this will reduce memory consumption.
source
share