How can I change the font size of my UITableView cell title in XCode?
Thanks
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With