搜索
您的当前位置:首页正文

Cordova JS OC交互方法

来源:二三娱乐

CDVPluginResult*pluginResult = [CDVPluginResultresultWithStatus:CDVCommandStatus_OKmessageAsString:@""];

这个就是OC回调JS方法

//这边就是JS发起调用OC函数

cordova.exec(this.testSuccess,this.testFail,"TestPluginName","testPluginFunctionWithArgumentsAndCallBack", [{"name":"小明"}, {"age":"9"}, {"frends": ["小白","小溪"]}]);

Top