Swift NSAttributedString的使用
p.p2 { margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Menlo; color: #000000; background-color: #ffffff; min-height: 16.0px }
p.p3 { margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Menlo; color: #000000; background-color: #ffffff }
span.s1 { color: #ba2da2 }
span.s2 { color: #000000 }
span.s3 { color: #272ad8 }
span.s4 { color: #703daa }
span.s5 { color: #d12f1b }
span.s6 { color: #4f8187 }
span.s7 { color: #3e1e81 }
p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Menlo; color: #703daa; background-color: #ffffff }
NSMutableAttributedString
let testAttributes = [NSAttributedStringKey.foregroundColor: UIColor.blue, NSAttributedStringKey.backgroundColor: UIColor.yellow,NSAttributedStringKey.strikethroughStyle:1] as [NSAttributedStringKey : Any]
let testAttributeString = NSAttributedString(string: “富文本测试”, attributes:testAttributes)
self.testLabel.attributedText = testAttributeString
let prefix = “¥” + “100”
let suffix = “¥” + “200”
let string = prefix + suffix
let myAttribute = [NSAttributedStringKey.foregroundColor: UIColor.lightGray,
NSAttributedStringKey.strikethroughStyle: NSUnderlineStyle.styleSingle.rawValue,
NSAttributedStringKey.font: UIFont.systemFont(ofSize: 13)] as [NSAttributedStringKey : Any]
let redAttribute = [NSAttributedStringKey.foregroundColor: UIColor.red,
NSAttributedStringKey.font: UIFont.systemFont(ofSize: 15)] as [NSAttributedStringKey : Any]
let attString = NSMutableAttributedString(string: string)
attString.addAttributes(redAttribute, range:NSRange.init(location: 0, length: prefix.count))
attString.addAttributes(myAttribute, range: NSRange.init(location: prefix.count, length: suffix.count))
self.titleLabel.attributedText = attString