我可以在swift中制作一个文本有多种颜色的按钮吗?

时间:2016-07-26 16:08:37

标签: ios swift uibutton nsattributedstring

我可以在swift中创建一个文本有多种颜色的按钮吗?按钮文本将动态更改,因此我无法生成图像。

我尝试使用不同颜色制作两个属性字符串,将它们连接起来,并将按钮的文本设置为该字符串。不幸的是,这并没有保留不同的颜色,只是在字符串的末尾添加了描述nsattribtues的明文。

let currDescString = NSAttributedString(string: descriptor)
let editString = NSAttributedString(string: "(edit)", attributes: [NSForegroundColorAttributeName : UIColor.blueColor()])
let editDescriptionString = NSAttributedString(string: "\(descriptor) \(editString)")
subBttn.setAttributedTitle(editDescriptionString, forState: UIControlState.Normal)

我希望currDescString为黑色,editString为蓝色...在第3行,我尝试连接这些,在第4行,我尝试设置标题。上述同样的问题仍然存在。

1 个答案:

答案 0 :(得分:9)

您可以使用:

let att = NSMutableAttributedString(string: "Hello!");
att.addAttribute(NSForegroundColorAttributeName, value: UIColor.redColor(), range: NSRange(location: 0, length: 2))
att.addAttribute(NSForegroundColorAttributeName, value: UIColor.greenColor(), range: NSRange(location: 2, length: 2))
button.setAttributedTitle(att, forState: .Normal)

您可以使用addAttribute方法的range参数指定子字符串应具有的颜色。

对于你的例子,这是这样的:

let string1 = "..."
let string2 = "..."

let att = NSMutableAttributedString(string: "\(string1)\(string2)");
att.addAttribute(NSForegroundColorAttributeName, value: UIColor.redColor(), range: NSRange(location: 0, length: string1.characters.count))
att.addAttribute(NSForegroundColorAttributeName, value: UIColor.greenColor(), range: NSRange(location: string1.characters.count, length: string2.characters.count))
button.setAttributedTitle(att, forState: .Normal)