仅更改NSAttributedString的字体大小

时间:2019-05-12 19:00:10

标签: ios swift font-size nsattributedstring

我有一个从RTF文件加载的NSAttributedString,因此它已经包含了多个用于不同范围的字体属性。 现在,我想使字体大小适应设备的屏幕大小,但是当我添加一个具有新大小的全新字体属性时,其他字体就会消失。

是否可以更改整个字符串的 only 字体大小?

1 个答案:

答案 0 :(得分:3)

如果只想更改在属性字符串中找到的任何给定字体的大小,则可以执行以下操作:

let newStr = someAttributedString.mutableCopy() as! NSMutableAttributedString
newStr.beginEditing()
newStr.enumerateAttribute(.font, in: NSRange(location: 0, length: newStr.string.utf16.count)) { (value, range, stop) in
    if let oldFont = value as? UIFont {
        let newFont = oldFont.withSize(20) // whatever size you need
        newStr.addAttribute(.font, value: newFont, range: range)
    }
}
newStr.endEditing()

print(newStr)

这将保留所有其他属性。

如果要将给定属性字符串中的所有字体替换为给定大小的单个字体,但保留所有其他属性(如粗体和斜体),请参见: NSAttributedString, change the font overall BUT keep all other attributes?