objectiveccoder001
objectiveccoder001

Reputation: 3031

objective c javaScript

Is it possible for a NSTextField to respond to Javascript commands??

Upvotes: 0

Views: 144

Answers (1)

Eiko
Eiko

Reputation: 25632

No. It only accepts objective-c messages.

If you have a WebView that generates some javascript events though, they can trigger something outside of your web view, but this is already objective-c or some other native language. This can then call obj-c messages on the NSTextField.

Upvotes: 1

Related Questions