Firstly, I'm aware of, and regularly use,
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
...this question is a little more complex than that :-)
I have a custom UITableViewController that is data driven. Depending on the definition of the table at runtime, it pulls in a selection of custom cells (which are themselves separate custom UITableViewCell classes).
The custom cells are also data driven, and have heights that are only determined at run-time.
By doing some run-time logging, I see that UITableViewController calls heightFor... for all cells in the table before calling cellFor... for the visible cells.
This means that I'll effectively have to construct the cell once to determine the height, and then again to return the cell when requested.
Is it in any way possible to return a default value for the height via heightFor.. and then override this once the actual height is known?
Or are there any alternative solutions to avoid having to construct the cells twice?
Suggestions appreciated.
