I have a UITableViewContoller
with a a UITableViewCell
that has a UIButton
. When the UIButton
is tapped, I would like the cell's height to resize to 100, and when tapped again, the cell's height should resize to 300.
I have done this using Autolayout before where I change the height constraint.
Is there a way to do this without using Autolayout using Autoresizing:
If so, what are the steps?