I have a Cocoa app that uses a WebView to display an HTML interface. How would I go about calling an Objective-C method from a Javascript function within the HTML interface?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
This is documented at developer.apple.com. |
|||||||||||||
|
|
If you wanna do it in iPhone apps, you would need to do a trick with the UIWebViewDelegate method shouldStartLoadWithRequest: This api http://code.google.com/p/jsbridge-to-cocoa/ does it for you. It is very lightweight. |
||||
|
|
|
I have a solution using NimbleKit. It can call Objective C functions from Javascript. |
|||||
|