我試圖設置最後一個tableView行不同於其他的高度。 而不是創建一個新的單元格等,我想從這個單元格的高度「剪切」10px。正如我爲高度設置自動尺寸,我不能使用一個常數值。UITableViewAutomaticDimension-10.0
這是它的樣子:
tableView.estimatedRowHeight = 54.0
return UITableViewAutomaticDimension
我想是這樣的,但是這並不工作:
if isLastLineBla {
tableView.estimatedRowHeight = 44.0
return UITableViewAutomaticDimension-10.0
} else { ...
好的,謝謝。將它設置爲44對我來說不起作用,因爲它中有一個標籤,可以根據行數/高度的不同而變化。所以我想要UITableViewAutomaticDimension的高度,但刪除這個高度的10px。 – suppe