如何在webview中加载网址,iPhone的phonegap会自动加载www / index.html

时间:2012-02-03 11:31:28

标签: xcode cordova

我正在做一个需要加载外部网址的应用。在测试期间,我们只是使用javascript重定向到网址。

我们只需在index.html上添加以下代码:

function onDeviceReady()
{
        document.location.href = "http://www.google.com";
}

但现在,我们想要一种使用对象c直接在webview中加载外部URL的方法。我一直在尝试修改AppDelegate.m上的NSURL,但它仍在加载index.html。

1 个答案:

答案 0 :(得分:0)

你有两个选择。 要么你可以使用childbrowser插件“https://github.com/purplecabbage/phonegap-plugins/tree/master/iPhone/ChildBrowser”在应用程序内的小浏览器中加载外部。 或者您可以编写一个插件,以类似于加载index.html的方式加载外部URL。