I am just starting out at Xcode, and I'm trying to make a OS X web browser.
I want to figure out when my webview is loading and when it isn't. I've already looked at a lot of pages both from here and the Apple Developer Library on this, and this is what I get:
- (void)webViewDidStartLoad:(WebView *)webView {
//enter code here
}
And of course I also saw the webViewDidFinishLoad
void
, but when I try this in my AppDelegate.m
nothing happens. I have connected the webview's frameLoadDelegate
to the App Delegate and from what I understand, I also need to use the <>
protocols in the AppDelegate.h
file. My problem is that when I type in webFrameLoadDelegateProtocol
into the <>
s it tell me that webFrameLoadDelegateProtocol
doesn't exist.