Mina Dawoud
Mina Dawoud

Reputation: 418

WebView finishes launching Mac OSX

I want to know if its possible to launch the javascript function

[WebView stringByEvaluatingJavaScriptFromString:@"Next()"];

after the WebView has finished loading in a Mac OS X app, not iOS. Thanks in Advance!

Upvotes: 0

Views: 1289

Answers (1)

bijan
bijan

Reputation: 1685

Have a look at WebFrameLoadDelegate Protocol Reference. Especially webView:didFinishLoadForFrame: should be interesting for you.

Upvotes: 3

Related Questions