UILabel文本具有不同的字体大小和颜色

时间:2016-01-15 14:46:52

标签: ios swift uilabel

如何使用Swift在UILabel中设置不同的字体大小和颜色?

我需要为字符串的第一个字符着色,其颜色和大小与字符串的其余部分不同。

1 个答案:

答案 0 :(得分:27)

假设您想要一个较小的灰色货币符号,如下所示:

enter image description here

只需使用NSMutableAttributedString对象:

let amountText = NSMutableAttributedString.init(string: "€ 60,00")

// set the custom font and color for the 0,1 range in string
amountText.setAttributes([NSFontAttributeName: UIFont.systemFontOfSize(12), 
                              NSForegroundColorAttributeName: UIColor.grayColor()],
                         range: NSMakeRange(0, 1))
// if you want, you can add more attributes for different ranges calling .setAttributes many times

// set the attributed string to the UILabel object
myUILabel.attributedText = amountText