将 UILabel 文本设置为粗体 [重复]
Posted
技术标签:
【中文标题】将 UILabel 文本设置为粗体 [重复]【英文标题】:Setting UILabel text to bold [duplicate] 【发布时间】:2014-09-21 10:38:01 【问题描述】:如何以编程方式在 Swift 中将 UILabel
的文本设置为粗体?
到目前为止我的代码:
var label = UILabel(frame:theFrame)
label.text = "Foo"
【问题讨论】:
查看UILabel
的文档。注意font
属性。
【参考方案1】:
使用UILabel
的font
属性:
label.font = UIFont(name:"HelveticaNeue-Bold", size: 16.0)
或使用默认的system font
加粗文本:
label.font = UIFont.boldSystemFont(ofSize: 16.0)
【讨论】:
我实际上需要第二个选项...非常感谢.. 喜欢第二个选项,使用没有自动完成功能的字符串输入字体名称有时会是一个......!干杯芽。【参考方案2】:使用属性字符串:
// Define attributes
let labelFont = UIFont(name: "HelveticaNeue-Bold", size: 18)
let attributes :Dictionary = [NSFontAttributeName : labelFont]
// Create attributed string
var attrString = NSAttributedString(string: "Foo", attributes:attributes)
label.attributedText = attrString
你需要定义属性。
使用属性字符串,您可以在一个文本中混合颜色、大小、字体等
【讨论】:
技术上正确,但有点矫枉过正。 扩展 nhgrif 的评论。 NSAttributedString 在这种情况下是有意义的 - ***.com/questions/28496093/…以上是关于将 UILabel 文本设置为粗体 [重复]的主要内容,如果未能解决你的问题,请参考以下文章
R语言ggplot2可视化:使用element_text函数设置轴标题文本为粗体字体(Bold Font,只设置Y轴的标题文本使用粗体字体)