引用头文件
#import <Cordova/CDVViewController.h>
#import <Cordova/CDVCommandDelegateImpl.h>
#import <Cordova/CDVCommandQueue.h>
加载资源
要在viewDidLoad之前加载资源,不设置的话默认加载"www"文件夹的资源
1.加载本地资源
/*加载沙盒中的资源包文件方式*/
NSString *home = NSHomeDirectory();
NSString *folder = [NSString stringWithFormat:@"file://%@/Documents/www/25",home]; //前面拼接file://
self.wwwFolderName = folder; //文件夹名称
self.startPage = @"index.html"; //起始页面
注意加载本地路径前面一定要加上 file://
2.加载远程链接资源
//加载远程资源链接方式
self.startPage = @"https://www.baidu.com/";
// 注:要在config.xml文件中添加如下,否则会跳转浏览器
//<allow-navigation href="https://*/*" />
//<allow-navigation href="http://*/*" />