如何在android中动态设置Tableview高度。我尝试使用以下代码,但它不起作用。
tblHeightConstraint.constant = downSelectionTbl.contentSize.height
看到这个链接我累了upvote答案,即使它没有解决我的问题。
这样做,
func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
tblHeightConstraint.constant = downSelectionTbl.contentSize.height
}