I am trying to use AutoLayout to configure the subviews in my table view cells and in the ideal case would like the table view cell to be just as high as necessary to contai
Separator
is messing with the height of the contentView
, either it should be disabled (and replaced with custom one if required) so that the contentView
height matches the height of the cell
or the constraints should be changed to more flexible considering that the contentView
height may mismatch the height of the cell
. Doing both would be even better.