0

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];
}
Mikolaj
  • 688
  • 8
  • 19
Oscar
  • 13
  • 5

1 Answers1

0

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.

Gabriele Petronella
  • 106,943
  • 21
  • 217
  • 235