按钮标题字体

时间:2018-03-08 05:18:27

标签: ios swift uibutton

btn.titleLabel?.font = UIFont(name:"Times New Roman", size: 20)

我知道这是改变按钮字体大小的方法。但它对我不起作用。

有人知道为什么它不适合我?

1 个答案:

答案 0 :(得分:2)

在按钮实例上使用 setAttributedTitle 修复了问题

let title = "Some String"
    let attributedTitle = NSAttributedString.init(string: title, attributes: [.font: UIFont(name:"Times New Roman", size: 20)!])
    UIButton().setAttributedTitle(attributedTitle, for: .normal)