var
attributeString =
NSMutableAttributedString
(string:
"welcome to hangge.com"
)
attributeString.addAttribute(
NSFontAttributeName
, value:
UIFont
(name:
"HelveticaNeue-Bold"
, size: 16)!,
range:
NSMakeRange
(0,6))
attributeString.addAttribute(
NSForegroundColorAttributeName
, value:
UIColor
.blueColor(),
range:
NSMakeRange
(0, 3))
attributeString.addAttribute(
NSBackgroundColorAttributeName
, value:
UIColor
.greenColor(),
range:
NSMakeRange
(3,3))
label.attributedText = attributeString
请发表评论