如何在ios中更改Phonegap应用的起始页?

时间:2014-12-08 11:09:05

标签: ios cordova

您好任何人请告诉我如何将xcode中的加载类(如index.html)更改为ios中的login.html。我是ios的新人,所以请帮助我。

3 个答案:

答案 0 :(得分:7)

执行此操作的正确方法是,无需更改代码即可从

更改config.xml中的此行
<content src="index.html"/>

<content src="login.html"/>

答案 1 :(得分:2)

我做的最简单的方法是,xxxViewController:CDVViewController&lt; ...&gt;

然后你可以写'init'或'viewDidLoad'

- (id)init{
    self = [super init];
    if(self){
        self.wwwFolderName = @"dist/view";
        self.startPage = @"test.html";
    }
    return self;
}

-(void) viewDidLoad{
    self.wwwFolderName = @"dist/view";
    self.startPage = @"test.html";
    [super viewDidLoad];
}

所以,就是这样。

答案 2 :(得分:0)

以下代码将在项目文件夹中加载名为index.html的HTML文件:

[WebView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"]isDirectory:NO]]];