Quote:
Originally Posted by PhoneyDeveloper
Set the number of lines to zero, like the header and docs explain.
Don't adjust the height of the label in cellForRowAtIndexPath. Implement heightForRowAtIndexPath: like I mention upthread.
Set the autoresizeMask for flexible height.
|
I actually implemented the heightForRowAtIndexPath method as you posted above but that only got my cells to the right height. I thought you had to somehow resize the labels in the cells as well but I guess this is done automatically by this autoresizingMask behaviour.
EDIT: It worked..thank you so much PhoneyDeveloper.