iOS 8 introduced a way for tableViews to automatically adjust their cell's height based on their content (via AutoLayout).
// in viewDidLoad:
tableView.rowHeight = UITableViewAutomaticDimension
tableView.estimatedRowHeight = 44.0
I already got it working with labels, images, etc.
However, I can not figure out a way for the table view cell to grow automatically as soon as a cell's text view changes?
Some more information on the setup: The UITextView inside a cell has horizontal and vertical constraints to the table view cell's contentView. I also disabled scrolling for the text view.
I have also tried to change the height constraint of the cell manually, but the cell would not adopt those changes as well.