美文网首页
Swift-WKWebView加载带转义的htmlString

Swift-WKWebView加载带转义的htmlString

作者: 小猪蛋蛋 | 来源:发表于2021-12-02 15:52 被阅读0次
    extension String {
        var htmlToString:String {
            return try! NSAttributedString(data: Data(utf8),
                                           options: [.documentType: NSAttributedString.DocumentType.html,
                                                     .characterEncoding: String.Encoding.utf8.rawValue],
                                           documentAttributes: nil).string
        }
    }
    
    

    相关文章

      网友评论

          本文标题:Swift-WKWebView加载带转义的htmlString

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