tags:

views:

108

answers:

2

What is the fastest/simplest way to change only the size of the existing font on a UIButton? (pointSize is read-only)

Thanks in advance.

+2  A: 
UILabel* titleLabel = button.titleLabel;
titleLabel.font = [titleLabel.font fontWithSize:12345];
KennyTM
A: 

Perfect. We were re-creating the entire font. Thank you.

McPragma