如何更改NSMutableAttributedString的默认字体和字体大小

时间:2016-02-25 17:56:26

标签: ios swift nsmutableattributedstring

我使用swift。有没有办法改变NSMutableAttributedString的默认字体/字体大小等?显然,我可以专门为给定范围设置这些值 - 但这将覆盖字符串中的任何特定设置。

1 个答案:

答案 0 :(得分:0)

你可以这样使用

let yourAttributes = [NSFontAttributeName: UIFont.preferredFontForTextStyle(UIFontTextStyleHeadline), NSForegroundColorAttributeName: UIColor.blackColor()]

let yourString = NSAttributedString(string: "Here my string !", attributes: yourAttributes)

由于