我最近在iOS平台上开始学习PhoneGap,我遇到了一个问题。如何更改startPage
?
我按如下方式设置startPage
:
self.viewController.startPage = @"http://www.google.com";
它不起作用,我也尝试了以下方式:
NSURLRequest *request =
[NSURLRequest requestWithURL:[URL URLWithString:@"http://www.google.com"]];
它也没有用。
我不知道该怎么做。有人可以帮帮我吗?
答案 0 :(得分:1)
这是我为我的申请所做的。
像phonegap期望的那样创建一个本地index.html页面。
在html中,将window.location
设置为您需要的任何页面。
这是我的index.html:
<html>
<head>
<script> window.location.href='http://www.google.com' </script>
</head>
<body>
<h1 class='loading'> Loading </h1>
</body>
</html>
注意:请确保将http://
放在该位置,否则它可能会被视为相对链接。
答案 1 :(得分:0)
试试这个,
......
......
public partial class MainPage : PhoneApplicationPage
{
//variables…..
public MainPage()
{
InitializeComponent();
PGView.StartPageUri = new Uri(“www.google.com“, UriKind.Relative);
.....
.....
}
答案 2 :(得分:0)
您可以将申请的起点放在plist
档案中。