I need to access my cell in the table from tableView:heightForRowAtIndexPath:
since I want to use the data I have ion the custome cell for the height calculations.
The only way I have found to get my cells is to call tableView:cellForRowAtIndexPath:
The problem with that is that calling tableView:cellForRowAtIndexPath:
is actually creating the cells and than doing nothing with them. when the same cell will need to be used for drawing purpose it will be created again. So for the same index the cell is created twice.
So I am wondering is there a more effective way to do it. Thanks for the help.