我想用他的身高更新我的自定义单元格的内容,所以我写了这段代码:
extension MyViewController: UITableViewDelegate {
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return UITableViewAutomaticDimension
}
func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {
return 100
}
}
在我的customCellTableView xib中,我将top,right,left,bottom约束添加到所有标签,并将numberOflines属性添加到0 但是当运行应用程序时,我得到了一个250高度的单元格,所有细胞非常不正常。我在Xcode 9和swift 4上工作。 如果有人可以帮助我,