表格视图单元格动态高度会扩大,但显示为空视图

时间:2019-11-28 08:36:31

标签: ios swift uitableview autolayout

此处的表格视图单元格高度已扩大,但label内容视图未正确显示,但在button action底部位置触发了view,有人可以帮我解决这个问题吗?

This was the design of the image

dynamic label constraints which I had given

使用的代码是

self.cancelOrderTableView.estimatedRowHeight = 44.0
self.cancelOrderTableView.rowHeight = UITableView.automaticDimension

func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {
   return 300
}

func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
   return UITableView.automaticDimension
}

0 个答案:

没有答案