i am using Autolayout to set automatically the height of a cell. But i want to use some hidden UIViews in my Cells. So in some rows they should be hidden. The problem here is, if the label is still hidden it gets recognized by autolayout and it uses the space.
So i guess i need to update the height of my label, or the height of my Constraints.
What is the correct way if i am using Autolayout to hide UIElements in a Cell?
How can i update an existing (from Storyboard) Constraint?
Edit: Found out that i am able to update Constraints with Storyboard, is that the correct way to handle that? - but which is the correct one to setup the height? (This is just a Demo Project)