如何在ViewController中设置文件路径?

时间:2018-02-06 13:12:23

标签: ios iphone swift webview uiviewcontroller

这是我的项目结构:

image 0

我有2个不同的视图控制器GameViewController, TaskViewController)。它们都应该能够向用户显示web view

  • GameViewController 网页视图应加载文件www/game/index.html

  • TaskViewController 网络视图应加载文件www/task/index.html

添加网页视图非常简单。但我怎样才能具体说明正确的道路呢?

这就是我在GameViewController

中尝试的内容
let url = Bundle.main.url(forResource: "index", withExtension: "html", subdirectory: "www/game") // not working

let url = Bundle.main.url(forResource: "index", withExtension: "html", subdirectory: "game") // not working

let url = Bundle.main.url(forResource: "index", withExtension: "html", subdirectory: "myApplication/www/game") // not working

如何以正确的方式设置文件的路径(名称相同[index.html])?

非常感谢任何帮助。感谢。

1 个答案:

答案 0 :(得分:0)

尝试添加带有所选引用的文件,假设我有一个名为 pp 的文件夹,当我将其拖到Xcode选中时,有一个 premium.txt 创建文件夹引用并使用子目录轻松引用它,该文件夹将具有蓝色

enter image description here

enter image description here