HTML的NSAttributedString,具有西里尔文支持

时间:2018-09-09 15:05:29

标签: ios swift nsattributedstring cyrillic

我正在使用此代码从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的开头,我无法正确显示它。

0 个答案:

没有答案