label.textColor=
UIColor
.whiteColor()
//白色文字
label.backgroundColor=
.blackColor()
//黑色背景
|
label.textColor=
UIColor
.whiteColor()
//白色文字
label.backgroundColor=
.blackColor()
//黑色背景
|
label.textAlignment=
NSTextAlignment
.
Right
//文字右对齐
|
//富文本设置
attributeString =
NSMutableAttributedString
(string:
"welcome to hangge.com"
)
//从文本0开始6个字符字体HelveticaNeue-Bold,16号
attributeString.addAttribute(
NSFontAttributeName
"HelveticaNeue-Bold"
range:
NSMakeRange
(0,6))
//设置字体颜色
NSForegroundColorAttributeName
.blueColor(),
//设置文字背景颜色
NSBackgroundColorAttributeName
.greenColor(),
(3,3))
label.attributedText = attributeString
|