views:

41

answers:

1

Y/N: Is it possible to set one cell inside of a uitableview that has multiple cells to have a dynamic height that changes depending on the value of text it holds?

+2  A: 

Yes. You can specify the height of a cell by implementing tableView:heightForRowAtIndexPath: in your UITableViewDelegate. You can get the row height using NSString's sizeWithFont:constrainedToSize:lineBreakMode: method.

Jason Jenkins
Wow, great! Thanks for at least pointing me in the right direction. I'll get going on figuring out how to implement those methods. Thanks again.
Steve
Search on StackOverflow, there are a number of examples.
Kendall Helmstetter Gelner