What I have is:
- a NSString which can have any length between 1 and 400 characters
- a UITableViewCell (custom layout)
I tried using an UILabel with multiple lines, set the text, and call sizeToFit. That doesn't work always, most of the time the UILabel just clips off the part of the string that doesn't fit. Also, due the varying length of the text I'd need differently sized UITableViewCells, and at the time "tableView: cellForRowAtIndexPath:" is called I don't know what the height will be.
So what I need is a non-scrolling UI element which is able to display text and resizes its height (the width should remain constant) to exactly fit the text. As mentioned the sizeToFit method produces mostly garbage.
StatusCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"]; [[cell statusLabel] setLineBreakMode:NSLineBreakByWordWrapping]; [[cell statusLabel] setNumberOfLines:0]; [[cell authorLabel] setText:[resArray objectAtIndex:[indexPath row]*14+2]]; [[cell statusLabel] setText:[resArray objectAtIndex:[indexPath row]*14+5]]; return cell;– hutattedonmyarm Jul 7 '12 at 9:58