我需要通过编程方式设置UIButton标题UILabel的字体大小。


当前回答

快4.倍

button.titleLabel?.font = UIFont.systemFont(ofSize: 20)

其他回答

希望对你有所帮助

[_button.titleLabel setFont:[UIFont systemFontOfSize:15]];  

祝你好运

button.titleLabel.font = <whatever font you want>

对于那些想知道为什么他们的短信不显示的人,如果你这样做了

button.titleLabel.text = @"something";

它不会显示,你需要做:

[button setTitle:@"My title" forState:UIControlStateNormal]; //or whatever you want the control state to be
button.titleLabel.font = [UIFont systemFontOfSize:size];

应该帮助

检查自定义字体名称是否添加了“目标成员资格”复选框。这应该会有所帮助。

你可以使用:

button.titleLabel.font = [UIFont systemFontOfSize:14.0];