Swift:Bolding UIButton

时间:2016-05-13 17:15:01

标签: swift uibutton label uifont

是否可以在UIButton中加粗字体?有了标签,它非常简单,例如:

label.font = UIFont(name:"HelveticaNeue-Bold", size: 16.0)

但这不适用于按钮。

3 个答案:

答案 0 :(得分:21)

对于UIButton我试过这个并且有效:

Swift 2

testButton.titleLabel?.font = UIFont.boldSystemFontOfSize(18)

Swift 3& 4

testButton.titleLabel?.font = UIFont.boldSystemFont(ofSize: 18)

(感谢ConfusionTowers

答案 1 :(得分:0)

1)单击要加粗文本的按钮,然后找到属性检查器

Attributes Inspector

2)按“字体”后。它将弹出如下图所示的图像。

"something pop out"

3)按样式,然后选择“加粗”。

4)单击Done,此操作完成。

答案 2 :(得分:0)

快速4 +

button.titleLabel?.font = UIFont.systemFont(ofSize: 22.0, weight: .bold)