首页 热点专区 小学知识 中学知识 出国留学 考研考公
您的当前位置:首页正文

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

2024-12-10 来源:要发发知识网

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

显示全文