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


当前回答

斯威夫特4

button.titleLabel?.font = UIFont(name: "Font_Name_Here", size: Font_Size_Here)

objective - c

[button.titleLabel setFont:[UIFont fontWithName:@“Font_Name_Here” size: Font_Size_Here]];

例子:

Font_Name = "Helvetica"

Font_Size = 16.0

希望能有所帮助。

其他回答

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

应该帮助

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

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

希望对你有所帮助

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

祝你好运

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

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

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

快4.倍

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