这是我的项目结构:
我有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
])?
非常感谢任何帮助。感谢。