I get a warning saying that setFont is deprecated?
[button setFont:[UIFont boldSystemFontOfSize:13]];
Any suggestions how to take it away p
As UIButton exposes its titleLabel starting from iPhone OS 3.0 you must set font to it directly:
[button.titleLabel setFont:[UIFont boldSystemFontOfSize:13]];