美文网首页
uilabel 纯文本拼接

uilabel 纯文本拼接

作者: 林小姐的那片海 | 来源:发表于2017-09-28 15:44 被阅读0次
        let cp = "¥ " + (data?["price"] as! String?)! + "  "
        let cPriceAttri = NSMutableAttributedString(string: cp)
        cPriceAttri.addAttribute(NSForegroundColorAttributeName, value: UIColor.red, range: NSMakeRange(0, cPriceAttri.length))

        //商品原价
        let oldpricetxt = (data?["price_old"] as! String?)!
        let oldpricestr = "¥ " + oldpricetxt

        let oldPriceAttri = NSMutableAttributedString(string: oldpricestr)
        oldPriceAttri.addAttribute(NSForegroundColorAttributeName, value: UIColor.lightGray, range: NSMakeRange(0, oldpricestr.characters.count))
        oldPriceAttri.addAttribute(NSBaselineOffsetAttributeName, value: 0, range: NSMakeRange(0, oldPriceAttri.length))
        oldPriceAttri.addAttribute(NSStrikethroughStyleAttributeName, value: NSNumber(value: 1), range: NSMakeRange(0, oldPriceAttri.length))

        cPriceAttri.append(oldPriceAttri)
        currentprice.attributedText = cPriceAttri

相关文章

网友评论

      本文标题:uilabel 纯文本拼接

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