我尝试更改UILabel
部分的文字颜色,如下所示。
func changetheColor () {
let staticStrng : String = "Zave receipt"
var mymutableAttributeString = NSMutableAttributedString()
mymutableAttributeString = NSMutableAttributedString(string: staticStrng)
mymutableAttributeString.addAttribute(NSForegroundColorAttributeName, value: UIColor.redColor(), range: NSRange(location: 5,length: 7))
saveReceiptLabel.text = mymutableAttributeString.string
}
这不起作用,我做错了什么。希望你的帮助。
答案 0 :(得分:1)
改变这个:
saveReceiptLabel.attributedText = mymutableAttributeString.string