How can I get the second cell to expand to fit the text rather than scaling the text? Is there a built in way of doing this in iOS or will I have to come up with some home-cook
Implement:
- (float)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
in your table delegate. For the different row and section in the passed indexPath, return a different height to fit your label.
Ensure 'adjust to fit' for the label in IB is not ticked (property adjustsFontSizeToFitWidth
if done using code).