How can I change the font size of my UITableView cell title in XCode?
Thanks
Use a custom UITableViewCell and assign labels using the sizes you want.
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.