仅更改UIButton上UIFont的大小

时间:2010-03-29 12:52:33

标签: iphone ipad

仅更改UIButton上现有字体大小的最快/最简单方法是什么? (pointSize是只读的)

提前致谢。

1 个答案:

答案 0 :(得分:69)

UILabel* titleLabel = button.titleLabel;
titleLabel.font = [titleLabel.font fontWithSize:12345];