btn.titleLabel?.font = UIFont(name:"Times New Roman", size: 20)
我知道这是改变按钮字体大小的方法。但它对我不起作用。
有人知道为什么它不适合我?
答案 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)