I have a vertical StackView in my TableViewCell, and I set the following properties:
myTableView.estimatedRowHeight = 100.0
myTableView.rowHeight = UITableViewAutomaticDimension
But the cell height is always being set to 100 even if the collective height of the views in the cell is greater than 100. How can I make the cell size correctly given the contents in the stackview. Sometimes it might be more or less than 100.
My cell contains two stackviews ontop of eachother of equal heights with a leading and top constraint. They are set to fill/fill proportionally (alignment/distribution)