2
我發現這個代碼HTML中的UILabel(IOS)格式
let attrStr = try! NSAttributedString(
data: (text?.data(using: String.Encoding.unicode, allowLossyConversion: true)!)!,
options: [ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType],
documentAttributes: nil)
這將返回屬性串。但字體變得太小而且與我想要的不同。我怎麼能設置該字符串的默認字體?
無論您列舉NSFontAttributeName並改變它,或者你添加一個新的HTML標記來改變它:http://stackoverflow.com/questions/20992950/ios7-font-大小變化時創建-nsattributedstring從 - HTML – Larme