如何通过UIWebView

时间:2018-05-15 05:58:23

标签: swift uiwebview iosdeployment

我一直在研究ios app,现在我遇到了一些问题。我想使用docx, xls加载一些文件,例如UIWebView。它让我在我的实际设备上显示白屏。

@IBOutlet weak var fileServerWebView: UIWebView!
override func viewDidLoad() {
    super.viewDidLoad()

    if let path = Bundle.main.path(forResource: "easychair", ofType: "docx"){
        let targetUrl: URL = URL(fileURLWithPath: path)
        let request = URLRequest(url: targetUrl as URL)
        fileServerWebView.delegate = self
        fileServerWebView.scalesPageToFit = true
        fileServerWebView.loadRequest(request)
    }else{
        print("cannot get path")
    }

    // Do any additional setup after loading the view.
}

这是我试图从本地加载该文件的代码。谢谢你的帮助。

0 个答案:

没有答案