是否可以在UIButton中加粗字体?有了标签,它非常简单,例如:
label.font = UIFont(name:"HelveticaNeue-Bold", size: 16.0)
但这不适用于按钮。
答案 0 :(得分:21)
对于UIButton
我试过这个并且有效:
Swift 2
testButton.titleLabel?.font = UIFont.boldSystemFontOfSize(18)
Swift 3& 4 强>
testButton.titleLabel?.font = UIFont.boldSystemFont(ofSize: 18)
(感谢ConfusionTowers)
答案 1 :(得分:0)
答案 2 :(得分:0)
快速4 +
button.titleLabel?.font = UIFont.systemFont(ofSize: 22.0, weight: .bold)