这个问题已经有了答案:
Changing specific text's color using NSMutableAttributedString in Swift
21个答案
创建了一个带有简单文本的标签。
如何更改标签中某些单词的颜色?
斯威夫特3
如下所示-
最佳答案
使用NSMutableAttributedString
为字符串中的不同单词应用颜色。
试试这个,已经有很多类似的问题都有答案了。
let myLabel = UILabel()
var stringOne = "Swift 3 has come"
let stringTwo = "has"
let range = (stringOne as NSString).range(of: stringTwo)
let attributedText = NSMutableAttributedString.init(string: stringOne)
attributedText.addAttribute(NSForegroundColorAttributeName, value: UIColor.blue , range: range)
myLabel.attributedText = attributedText