答案 0 :(得分:1)
您可以使用UILabel
显示使用html字符串解析的属性字符串。
这是Swift 4中的代码
extension String {
func toHtmlString() -> NSAttributedString? {
guard let data = self.data(using: String.Encoding.utf16, allowLossyConversion: false) else { return nil }
guard let html = try? NSMutableAttributedString(
data: data,
options: [NSAttributedString.DocumentReadingOptionKey.documentType: NSAttributedString.DocumentType.html],
documentAttributes: nil) else { return nil }
return html
}
}