views:

787

answers:

1

I know you previously change the font size of a cell like so:

cell.font = [UIFont boldSystemFontOfSize:18];

I'm using a cell that is init'd with the style UITableViewCellStyleSubtitle. How do I change the font size of the textlabel and detailtextlabel of this type of cell?

+1  A: 
cell.textLabel.font = [UIFont boldSystemFontOfSize:18];

3.0 changed the UITableViewCell API. I would suggest reading up on it in the docs as there are some deprecated methods

coneybeare