0
始終保存零本地HTML文件,我在項目的根目錄我的html文件無法加載在文件路徑迅速4
let myWebView:UIWebView = UIWebView(frame: CGRect(x:0, y:0, width: UIScreen.main.bounds.width, height:UIScreen.main.bounds.height))
self.view.addSubview(myWebView)
do {
guard let filePath = Bundle.main.path(forResource: "iphone_help", ofType: "html")
else {
print ("File reading error")
return
}
let contents = try String(contentsOfFile: filePath, encoding: .utf8)
let baseUrl = URL(fileURLWithPath: filePath)
webView.loadHTMLString(contents as String, baseURL: baseUrl)
}
catch {
print ("File HTML error")
}
你能告訴你的錯誤? –
沒有錯誤,但始終將文件路徑存儲爲零 –
我必須通過使用構建階段來添加我的html文件 –