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
My solution:
- (void)webViewDidFinishLoad:(UIWebView *)webView { if (!webView.isLoading) { // Tada } }