作者:你眼眸下的伤谁能读懂UPV | 来源:互联网 | 2023-08-13 18:55
首页我们要创建一个Cordova项目,并导入到Xcode中。假设我们需要创建一个TestPlugin插件,包含一个test方法。在Plugins文件夹下创建estPlugin.h和
首页我们要创建一个 Cordova 项目,并导入到 Xcode 中。
假设我们需要创建一个 TestPlugin 插件,包含一个 test 方法。在 Plugins 文件夹下创建 estPlugin.h 和 TestPlugin.m 文件,并输入下面的代码:
/********* TestPlugin.h Cordova Plugin Header *******/
@interface TestPlugin : CDVPlugin
– (void)test:(CDVInvokedUrlCommand *)command;
@end
/***************** TestPlugin.m ********************/
#import “TestPlugin.h”
@implementation TestPlugin
– (void)test:(CDVInvokedUrlCommand *)command
{
UIAlertView *alertview = [[UIAlertView alloc] initWithTitle:@”标题”message:@”Hello world!” delegate:self cancelButtonTitle:@”取消” otherButtonTitles:@”确定”, nil];
[alertview show];
}
@end
提示一下对Objective C语言不熟悉的朋友,类文件都是拆分为h和m两部分,h包含了对类和方法的定义,m包含了具体实现。而我们常用的Java和PHP是将类的定义和实现放在一个文件中。上面的插件我们只提供一个test方法,它的功能是显示一个原生的提示框。
下面,我们需要将插件的信息写入配置文件,Cordova才能找到插件。打开Staging文件夹下的config.xml文件,在widget标签下输入:
这样就完成了Javascript和Objective C的桥接,大功告成,我们可以使用Javascript来调用TestPlugin插件了。
cordova.exec(null,null,”TestPlugin”,”test”,[]);
上面的代码调用了插件的test方法,如果一切操作正确的话,你将看到一个类似于confirm的提示框。
一个最简单的Cordova插件就开发完成了.