如何自行调整 uItableview Cell元素。
自动调整 UITableViewCell 大小。
答案 0 :(得分:1)
因此,有两行代码可以让你的cellHeight自我调整大小。
tableView.rowHeight = UITableViewAutomaticDimension
tableView.estimatedRowHeight = 140 // set your estimatedHeight
但是,请确保您在单元格中的约束安装正确,并且视图具有内在的内容大小。
有关详细信息,请参阅本教程 https://www.raywenderlich.com/129059/self-sizing-table-view-cells