我在html中对齐子弹中的文本时遇到问题。我在NSAttributedString
UITextView
var htmlAttributedString: NSAttributedString {
guard let data = data(using: .utf8) else { return NSAttributedString() }
do{
return try NSAttributedString(data: data, options: [NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType, NSCharacterEncodingDocumentAttribute: String.Encoding.utf8.rawValue], documentAttributes: nil)
}catch{
return NSAttributedString()
}
}
var htmlToString: String {
return htmlAttributedString.string
}
我用UITextView
设置了mystring.htmlToString
的文字,但这就是我得到的
我想将我的列表与第二行没有溢出的无序列表对齐。
我发现了类似问题here,但仍然没有任何问题。任何帮助,将不胜感激。谢谢。