I need to know, when a web page has completely been loaded by UIWebView. I mean, really completely, when all redirects are done and dynamically loaded content is ready. I tr
You could also use the accepted answer here: UIWebView - How to identify the "last" webViewDidFinishLoad message?...
Basically, use the estimatedProgress property and when that reaches 100, the page has finished loading... See this guide for help.
Although it does use a private framework, according to the guide there are some apps in the App Store that use it...