1

最近开始在iOS平台学习PhoneGap,遇到了一个问题。我怎样才能改变startPage?我设置startPage如下:

self.viewController.startPage = @"http://www.google.com";

它没有用,我也尝试了以下方法:

 NSURLRequest *request =       
  [NSURLRequest requestWithURL:[URL URLWithString:@"http://www.google.com"]];

它也没有工作。

我不知道该怎么做。有没有人可以帮助我?

4

3 回答 3

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://该位置,否则它可能会被视为相对链接。

于 2012-08-02T18:59:45.340 回答
0

您可以将应用程序的起点放在plist文件中。

于 2012-10-09T07:49:37.217 回答
0

尝试这个,

......
......
public partial class MainPage : PhoneApplicationPage
{
//variables…..
public MainPage()
{
   InitializeComponent();
   PGView.StartPageUri = new Uri(“www.google.com“, UriKind.Relative); 
   .....
   .....
}

检查如何在 PhoneGap 1.x强文本中更改起始页

于 2012-04-28T10:42:51.510 回答