Notice
Recent Posts
Recent Comments
Link
목록2018/02/11 (1)
아미(아름다운미소)
WebView HTML 파일 로딩
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) } }
랭귀지/SWIFT
2018. 2. 11. 09:00