Reputation: 418
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
Reputation: 1685
Have a look at WebFrameLoadDelegate Protocol Reference. Especially webView:didFinishLoadForFrame:
should be interesting for you.
Upvotes: 3