Call JavaScript Code From Obj-C Code In Cordova

Posted By Weston Ganger

Sometimes its required to call some javascript from your obj-c code for a cordova plugin or something. For example to call console.log('foo') just do the following.

<pre>
<code class="language-obj-c">
[self.commandDelegate evalJs:@"console.log('foo')"];


evalJs is the successor to writeJavascript which is now deprecated.


Related External Links:

- [Stack Overflow - cordova-call-js-part-of-plugin-from-ios-native](http://stackoverflow.com/questions/23640008/cordova-call-js-part-of-plugin-from-ios-native)

Article Topic:Software Development - Javascript

Date:February 23, 2017