Paste the UIWebViewDelegate into your class file that contains the UIWebView and paste the following two methods:
- (void)webViewDidStartLoad:(UIWebView *)webView - (void)webViewDidFinishLoad:(UIWebView *)webView
In the start method put your:
[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
... and at the finish, place:
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
Hope this helps!
source share