I have a UITableView with some cells, where (for example) the first cell is a header, and the second cell contains a View.
I’d like to toggle the view’s visibility when I press the header.
The press thingy is done in didSelectRowAtIndexPath, so can I set the visibility of another row from my UITableView (animated if possible)?
Can’t find anything about it on Google..
Thanks!
It works when I get the contentView of my UITableViewCell, and change the height of that view.