自动调整UiTableviewcell高度与内容的高度

时间:2017-10-25 11:11:27

标签: xcode uitableview

我想用他的身高更新我的自定义单元格的内容,所以我写了这段代码:

    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上工作。 如果有人可以帮助我,

0 个答案:

没有答案