I have this code, but doesn't work and i don't know why?
- (void)webViewDidStartLoad:(UIWebView *)web
{
[SVProgressHUD showWithStatus:@"Loading..."];
}
- (void)webViewDidFinishLoad:(UIWebView *)web
{
[SVProgressHUD dismiss];
}
I have this code, but doesn't work and i don't know why?
- (void)webViewDidStartLoad:(UIWebView *)web
{
[SVProgressHUD showWithStatus:@"Loading..."];
}
- (void)webViewDidFinishLoad:(UIWebView *)web
{
[SVProgressHUD dismiss];
}
Copyright © 2021 Jogjafile Inc.
Your question is far away from being complete enough to be answered properly, but if I have to guess I'd say that those methods are never being called.
You should set your
UIWebView
delegate either in Interface Builder or programmatically.