I'm loading a webview
and am using SVProgressHUD
to display a loading message whilst the page is loaded.
Here is my code:
- (void)viewDidLoad{
[super viewDidLoad];
_infowebView.delegate = self;
NSURL *url = [NSURL URLWithString:@"http://example.com"];
[self.infowebView loadRequest:[NSURLRequest requestWithURL:url]];
}
- (void)webViewDidStartLoad:(UIWebView *)webView {
[SVProgressHUD showWithStatus:@"Loading"];
}
Is it possible to show an error message if there isn't an internet connection available, if so how would i do this?