UILabel(iOS)中的HTML格式

时间:2016-08-24 13:49:47

标签: ios swift

我找到了这段代码

let attrStr = try! NSAttributedString(
        data: (text?.data(using: String.Encoding.unicode, allowLossyConversion: true)!)!,
        options: [ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType],
        documentAttributes: nil)

返回属性字符串。但是字体变得太小而且与我想要的字体不同。我怎样才能为该String设置默认字体?

1 个答案:

答案 0 :(得分:2)

尝试了不同的东西,我解决了:

我做了类似的事情:

text = "<font color=\"black\" face=\"arial\" size=\"15\">" + text + "</font>"

然后使用上面的代码。

希望对某人有用