When designing a table view cell that is self-sizing (e.g. using estimatedRowHeight and UITableViewAutomaticDimension), what to you enter in "Row Height" for the Table View Cell in Interface Builder?
The whole point of UITableViewAutomaticDimension is that I don't know the row height beforehand, so there should be a setting like "Calculate from current views and Autolayout configuration" in IB.
I mean, IB has all the intrinsic sizes and we can even specify placeholder heights, so it should be able to determine the (automatic) row height for the current "instance" of the cell shown in IB automatically.
It's annoying that IB keeps reporting Auto Layout errors unless I manually calculate the appropriate row height.
How do you guys handle this issue? Is there some kind of best practice, or trick?