我正在尝试将最后一个 tableView 行的高度设置为与其他行不同。而不是创建一个新的单元格等,我想从这个单元格的高度“切割”10px。因为我已经为高度设置了自动尺寸,所以我不能使用一个常数值。
这是它的样子:
tableView.estimatedRowHeight = 54.0
return UITableViewAutomaticDimension
我想要这样的东西,但这不起作用:
if isLastLineBla {
tableView.estimatedRowHeight = 44.0
return UITableViewAutomaticDimension-10.0
} else { ...