两个Cordova WebViews加载不同的html页面,怎么样?

时间:2013-12-05 16:51:23

标签: ios cordova uiwebview

我有两个包含Cordova WebView的标签。如何让它们加载不同的html页面?现在我只能让他们提供相同的页面......

我对config.xml文件的工作原理感到困惑,因为目前两个webview都加载了相同的内容: <content src="deviceTab/index.html"/>,我无法在配置文件中添加其中两个内容标记。

我是否必须为每个webview创建单独的config.xml?如何告诉Cordova WebView使用哪个配置文件?

帮助!

1 个答案:

答案 0 :(得分:1)

你必须用代码

来做
viewController.wwwFolderName = @"myfolder";
viewController.startPage = @"mypage.html"

更多信息embeding webviews