Changing the height of a dynamic-height UITableViewCell after it's already appeared
问题 I followed this tutorial to create a dynamic height UITableViewCell. My prototype cell has 1 label (pretty simple). That label has constraints set to "0" for all sides of the cell edges. That label has numberOfLines = 0 and wraps the word. In my UITableView setup, I do this: self.tableView.rowHeight = UITableViewAutomaticDimension self.tableView.estimatedRowHeight = 100.0 //some random number Basically, everything works. Each cell has its own different height. The problem arises when I update