Swift UI 交互 动效Swiftswift

使用swift给UILabel 添加不同字体大小和颜色的方法

2015-08-17  本文已影响5784人  羽翼de光辉

var uname:String= "abcdefg hijklmn opq rst uvw xyz"

varmyMutableString =NSMutableAttributedString()

myMutableString =NSMutableAttributedString(string: uname, attributes: [NSFontAttributeName:UIFont(name:"Georgia", size:14.0)!])

添加不同字体颜色

myMutableString.addAttribute(NSForegroundColorAttributeName, value:FfontColor, range:NSRange(location:1,length:4))

//添加不同字体大小

myMutableString.addAttribute(NSFontAttributeName, value:UIFont.systemFontOfSize(12.0), range:NSRange(location:1,length:4))

Uname.attributedText= myMutableString

上一篇下一篇

猜你喜欢

热点阅读