我使用swift。有没有办法改变NSMutableAttributedString的默认字体/字体大小等?显然,我可以专门为给定范围设置这些值 - 但这将覆盖字符串中的任何特定设置。
答案 0 :(得分:0)
你可以这样使用
let yourAttributes = [NSFontAttributeName: UIFont.preferredFontForTextStyle(UIFontTextStyleHeadline), NSForegroundColorAttributeName: UIColor.blackColor()]
let yourString = NSAttributedString(string: "Here my string !", attributes: yourAttributes)
由于