在UITableView
中,我想知道如何在单元格最后位置设置多行UILabel
(需要动态更新。),我想计算UILabel
计数并设置多行在tableview
答案 0 :(得分:0)
@Ashu您可以为该特定单元格动态设置tableView单元格高度。
override func viewDidLoad() {
self.tableView.estimatedRowHeight = 41.0
self.tableView.rowHeight = UITableViewAutomaticDimension
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
if indexPath.row == 0 {
return 100
} else {
return UITableViewAutomaticDimension
}
}
类似上面提到的代码。