Hi all,
I'm getting a peculiar warning, specifically this one:
warning: class does not implement the 'UIWebViewDelegate' protocol
... when I have these methods in my application:
-(void)webViewDidStartLoad {
...
}
-(void)webViewDidFinishLoad {
...
}
... and even after setting the UIWebView's delegate to self
, I still get this warning, and the methods are never called (NSLog
provides no results.)
Can anyone pinpoint what is happening here? Thanks in advance!