我正在使用此代码从someHtmlString获取NSAttributedString并将其放入UITextView
let data = Data(someHtmlString.utf8)
if let attributedString = try? NSAttributedString(data: data,
options: [NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType],
documentAttributes: nil) {
myTextView.attributedText = attributedString
}
西里尔字母出现问题,而服务器的响应编码为UTF-8(如果我不输入的话)
<meta charset="utf-8">
在someHtmlString的开头,我无法正确显示它。