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


当前回答

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

其他回答

这应该能让你振作起来

[btn_submit.titleLabel setFont:[UIFont systemFontOfSize:14.0f]];

您还可以自定义按钮字体粗体,斜体。 本例采用系统粗体字体大小。

[LoginButton.titleLabel setFont:[UIFont boldSystemFontOfSize:15.0f*Ratio]];

objective - c:

[button.titleLabel setFont: [button.titleLabel.font fontWithSize: sizeYouWant]];

迅速:

button.titleLabel?.font = button.titleLabel?.font.fontWithSize(sizeYouWant)

只会改变字体大小。

【按钮setFont:……已被弃用。

使用[按钮。titleLabel setFont:…而是,例如:

[myButton.titleLabel setFont:[UIFont systemFontOfSize:10]];

这会很有帮助

button.titleLabel.font = [UIFont fontWithName:@"YOUR FONTNAME" size:12.0f]