答案 0 :(得分:0)
我认为,这是由于Font
样式,因此您可以将文本设置为NSAttributedString
字符串并相应地管理字体。在这种情况下,请使用不同的NSMutableAttributedString
创建两个Attributes
并使用它。
extension String {
func getText() -> NSAttributedString {
let str1 = "Hello"
let str2 = "750"
//create attribute
let attStr1 = NSMutableAttributedString(string: str1)
let attFormat = [NSFontAttributeName : UIFont.systemFontOfSize(10.0)]
let attString = NSMutableAttributedString(string: str2, attributes: attFormat)
attString.appendAttributedString(attStr1)
return attString
}
}
只需根据您的要求创建Attribute
即可。