Hello,
I'm calling this method with a YES before loading a URL to a webview and with a NO after the URL load. However since the loadRequest method is asynchronous, I'm not getting the effect I'm looking for. Basically having the networkActivityIndicator visible while the page is loading. Since this webView is loaded from a nib and pushed to the navigation controller I can't seem to find a spot in the ViewController to start/stop the networkActivityIndicator while the page loads. Any suggestions?
Code:
[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
Thanks,
Wayne