CDVPluginResult*pluginResult = [CDVPluginResultresultWithStatus:CDVCommandStatus_OKmessageAsString:@""];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
這個就是OC回調(diào)JS方法
//這邊就是JS發(fā)起調(diào)用OC函數(shù)
cordova.exec(this.testSuccess,this.testFail,"TestPluginName","testPluginFunctionWithArgumentsAndCallBack", [{"name":"小明"}, {"age":"9"}, {"frends": ["小白","小溪"]}]);