以下灰色区域分组UITableView

时间:2016-08-20 15:45:09

标签: ios swift uitableview

我有一个带分组样式的UITableView。我已将页脚高度设置为0。

multiprocessing.Pool

当我向下滚动时,我会在表格视图的底部看到一个灰色区域。

enter image description here

如何摆脱这个区域?

编辑:此问题仅发生在分组表格样式中。如果我使用简单的风格,我不会得到空白区域。但是出于其他原因,使用普通样式不是一种选择。

2 个答案:

答案 0 :(得分:1)

它必须是消耗此区域的部分页脚的高度。尝试设置以下内容:

func tableView(tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {

    return CGFloat.min
}

答案 1 :(得分:0)

使用UIView实例化tablefooter视图,例如:

`tableView.tableFooterView = UIView()`