If you are doing this programatically, then you can set the property cell.textLabel.font
in your tableView:cellForRowAtIndexPath
method.
Specifically, to change the size, you would write:
cell.textLabel.font = [UIFont systemFontOfSize:12.0];
Which would resize your font to size 12.0 pts.