1
我的tableView
中只有一個cell
。這cell
有fixed height
。在這個cell
下我有很多空的單元格,實際上不是單元格,並且是默認創建的。所有這些細胞都有separator
所以在不難看出高度。如何更改tableView頁腳中空單元格的高度?
如何使這些非單元格(在tableView
頁腳中)的高度不同於第一個cell
的高度?
我試着使用heightForRowAtIndexPath
func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
if indexPath.row == 0 {
return 140.0
}
return 70.0
}
,但我看到它被稱爲唯一真正的細胞,而不是tableView
腳註單元。