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.


[self.commandDelegate evalJs:@"console.log('foo')"];

evalJs is the successor to writeJavascript which is now deprecated.


Related External Links:

Article Topic:Software Development - Ionic

Date:February 23, 2017