cordova项目引用和应用
项目地址:https://git.coding.net/gxatios/CordovaTest.git
新建测试项目,或其它已有项目
1,引用cordova,pods添加cordova:
遇到问题,不支持,Unable to satisfy the following requirements
解决:降低cordova的版本.。
添加www文件夹和config.xml到项目根目录,www文件夹须有index.html
2,使用cordova
某个viewController下添加 代码如下:
#import <Cordova/CDVViewController.h>
@interfaceViewController()
@property(nonatomic,strong)CDVViewController*vvController;
@end
- (void)viewDidLoad {
[superviewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
self.view.backgroundColor= [UIColorpurpleColor];
self.vvController= [CDVViewControllernew];
self.vvController.wwwFolderName=@"www";
self.vvController.view.frame=CGRectMake(0,0,320,480);
self.vvController.startPage=@"http://www.baidu.com";
//[self.view addSubview:self.vvController.view];
[self.navigationControllerpresentViewController:self.vvControlleranimated:YEScompletion:^{ }];
}
OC发送js命令
NSString* commandsJSON = [_viewController.webView
stringByEvaluatingJavaScriptFromString:js];
[_commandQueue enqueCommandBatch:commandsJSON];
}