如何使用Swift在UILabel中设置不同的字体大小和颜色?
我需要为字符串的第一个字符着色,其颜色和大小与字符串的其余部分不同。
答案 0 :(得分:27)
假设您想要一个较小的灰色货币符号,如下所示:
只需使用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