使用NSAttributeString更改重复单个字符的颜色?

时间:2017-02-08 11:14:39

标签: ios swift

我有一个改变单个重复字符颜色的方案'#'在字符串中,就像下面显示的图像一样。 我正在使用这段代码。

    let textTag = lblNewsTag.text
    let range = (textTag! as NSString).rangeOfString("#")
    let attributedString = NSMutableAttributedString(string:textTag!)
            attributedString.addAttribute(NSForegroundColorAttributeName, value: UIColor.redColor() , range: range)
    lblTag.attributedText = attributedString

enter image description here

0 个答案:

没有答案