如何使用Swift解码HTML?

时间:2017-11-20 22:31:05

标签: html ios json swift

如何解码来自this JSON string等API响应的HTML 获取清晰的HTML以将其放入webView?

<head lang="pl">
<meta charset="UTF-8">
<meta name='viewport' content='width=device-width,initial-scale=1.0'>
<style type="text/css" media="screen">

完全转换的HTML:https://pastebin.com/CKhXzYup

我知道首先我必须将JSON转换为字典,然后呢?

1 个答案:

答案 0 :(得分:1)

从字典中获取html字符串后,将其加载到WKWebView中。例如:

if let htmlString = yourDict["render_page"] as? String{
   let webView = WKWebView(frame: self.view.bounds)
   self.view.addSubview(webView)
   webView.loadHTMLString(htmlString, baseURL: nil)
}