아미(아름다운미소)

WebView HTML 파일 로딩 본문

랭귀지/SWIFT

WebView HTML 파일 로딩

유키공 2018. 2. 11. 09:00

WebView HTML 파일 로딩

func loadPageWithUrlString(urlString : String) {
    if let url = URL(string : urlString) {
        webView.loadRequest(URLRequest(url: url))
    }
}
     
@IBAction func fileClicked(_ sender: AnyObject) {
    if let path = Bundle.main.path(forResource: "Sample", ofType : "html") {
        loadPageWithUrlString(urlString: path)
    }
}
Comments