作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的项目结构:
我有 2 个不同的 View Controller (GameViewController,
TaskViewController
)。它们都应该能够向用户显示 WebView
。
GameViewController 的 WebView 应加载文件 www/game/index.html
TaskViewController 的 web View 应加载文件 www/task/index.html
添加 WebView 非常简单。但我怎样才能指定正确的路径呢?
这是我在 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
] )?
任何帮助将不胜感激。谢谢。
最佳答案
关于ios - 如何在 ViewController 中设置文件路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48643895/
我是一名优秀的程序员,十分优秀!