在我的應用程序,我將在更改歸屬字符串的單個字體屬性。
<p style = "text-align: center;"><strong>"some text in here</strong></p>
我知道如何使用下面的函數這個網站字符串轉換爲構造一個AttributedString格式得到一個HTML字符串。
[[NSAttributedString alloc] initWithData:[aboutData dataUsingEncoding:NSUTF8StringEncoding] options:@{NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType, NSCharacterEncodingDocumentAttribute: [NSNumber numberWithInt:NSUTF8StringEncoding]} documentAttributes:nil error:nil];
但問題是,我希望保留獲得AttributedString的所有屬性,但可以改變任何字體大小,字體,這達到attributedString的段落樣式。
例如,如果我從這個html中獲得一個大膽的attributesString,我怎麼能改變這個特定字符串的字體大小或字體系列而不改變它的大膽狀態?
我該怎麼做?
謝謝!
http://stackoverflow.com/questions/19921972/parsing-html-into-nsattributedtext-how-to-set-font http://stackoverflow.com/questions/25401742/apply-custom-font-to-歸屬字符串,它轉換從HTML字符串http://stackoverflow.com/questions/41412963/swift-change-font-on-an-html-string-that-has-its-own-styles/41413014 #41413014 – Larme