美文网首页
iOS:设置一段字符串每个字符不同颜色

iOS:设置一段字符串每个字符不同颜色

作者: dev_wave | 来源:发表于2016-08-08 10:30 被阅读28次

    private lazy var iOSMan : UILabel = {

    let iOSMan = UILabel()

    iOSMan.text = "let iOSMan = Wave"

    iOSMan.sizeToFit()

    iOSMan.left = 0

    iOSMan.top = self.pythonMan.bottom + 5

    let str = NSMutableAttributedString.init(string: iOSMan.text!)

    str.addAttribute(NSForegroundColorAttributeName, value: UIColor.kBasis_Let_Color(), range: NSMakeRange(0, 3))

    str.addAttribute(NSForegroundColorAttributeName, value: UIColor.whiteColor(), range: NSMakeRange(4, 8))

    str.addAttribute(NSForegroundColorAttributeName, value: UIColor.kBasis_deepBlue_Color(), range: NSMakeRange(12,5))

    iOSMan.attributedText = str

    return iOSMan

    }()

    相关文章

      网友评论

          本文标题:iOS:设置一段字符串每个字符不同颜色

          本文链接:https://www.haomeiwen.com/subject/psfrsttx.html