美文网首页
本地HTML显示图片

本地HTML显示图片

作者: 竹菜板 | 来源:发表于2017-03-25 10:48 被阅读11次

    在工程根目录建立一个文件夹,然后拖到Xcode, 注意要选蓝色文件夹

            let htmlName = "html_name"
        let htmlType = "html"
        
        private func loadHtml() {
            let filePath = Bundle.main.path(forResource: htmlName, ofType: "html")!
            do {
                let html = try String(contentsOfFile: filePath, encoding: String.Encoding.utf8)
                webView.loadHTMLString(html, baseURL: Bundle.main.resourceURL)
            } catch {
                
            }
        }
    
    
    

    相关文章

      网友评论

          本文标题:本地HTML显示图片

          本文链接:https://www.haomeiwen.com/subject/flxcottx.html