eg,
textLabel.numberOfLines = 0;
You can set this to a fixed number of lines if you want. It might be a good idea to install lineBreakMode, and you probably need to implement:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
via:
NSString sizeWithFont:constrainedToSize:
source
share