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


当前回答

objective - c:

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

迅速:

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

只会改变字体大小。

其他回答

斯威夫特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:14.0];

快4.倍

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

迅速:

shareButton.titleLabel?.font = UIFont.systemFontOfSize(size)

重要注意事项: 删除由animuson♦12月5日14日16:48 animuson,在我发布这个答案一个月后,我现在也有同样的问题。我在谷歌上搜索,发现这篇文章不容易复制粘贴到一个快速的项目中。当我滚动看到我删除的答案,并复制它。所以请不要删除真正有用的东西。

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