vote up 0 vote down star

As we know , When we load frame from webpage of safari, we will invoke the delegate methods of webkit informal protocol(WebFrameLoadDelegate):

webView:didStartProvisionalLoadForFrame:

webView:didChangeLocationWithinPageForFrame:

But I want to know whick class and methods will be invoked when reload a webpage or open a new webpage in safari ? Thank you very much!

flag

62% accept rate

1 Answer

vote up 1 vote down check

The same delegates are called, you just need to check that the webFrame that is sending this delegate message is the mainFrame by checking that it has no parent. For example:

- (void)webView:(WebView *)sender didStartProvisionalLoadForFrame:(WebFrame *)frame {
    if(![frame parentFrame]) {
        // There is no parent frame so this is the main frame.
    }
    // other actions for child frames.
}
link|flag
First thank you very much! Now I have another question: Can I get the flash address in the webpage using the argu: frame . and a flash in a frame ? and How to get it , I thought maybe Traversal all the every frame dom object? Thank you again! – jin Nov 5 at 8:11
That's a completely different question. – Abizern Nov 5 at 9:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.