Hey guys, I'd like to know the best strategy for adaptive cell heights. The cells first know how high they will be when they are created (they contain some textboxes and images) in the cellForRowAtIndexPath method. My idea was to store the cell's height in a NSMutuableDictionary with a cell identifiying key. The problem is that the heightForRowAtIndexPath method is called before the cells are created and only then.
How do you manage that usually?
Thanks!