如何在Swift中设置动态UITableView高度?

时间:2018-03-01 12:53:18

标签: ios swift uitableview

如何在android中动态设置Tableview高度。我尝试使用以下代码,但它不起作用。

 tblHeightConstraint.constant = downSelectionTbl.contentSize.height

看到下面这个链接我累了upvote答案,即使它没有解决我的问题。

  

iOS: Dynamically set UITableView height in Swift

1 个答案:

答案 0 :(得分:8)

这样做,

func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
    tblHeightConstraint.constant = downSelectionTbl.contentSize.height
}