I am using autolayout in Xcode 5.
I set the table view\'s height to Greater than or equal to 200px. I want that it has dynamic size. Because sometimes it will have many
It can be done programmatically. The concept (and code itself) is actually very simple:
In the updateConstraints method of myTableView's superview, add a constraint so that myTableView's height is equal to myTableView.contentSize.height.
Tested on Xcode 6 targeting iOS 7.