我有一个带分组样式的UITableView。我已将页脚高度设置为0。
multiprocessing.Pool
当我向下滚动时,我会在表格视图的底部看到一个灰色区域。
如何摆脱这个区域?
编辑:此问题仅发生在分组表格样式中。如果我使用简单的风格,我不会得到空白区域。但是出于其他原因,使用普通样式不是一种选择。
答案 0 :(得分:1)
它必须是消耗此区域的部分页脚的高度。尝试设置以下内容:
func tableView(tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
return CGFloat.min
}
答案 1 :(得分:0)
使用UIView实例化tablefooter视图,例如:
`tableView.tableFooterView = UIView()`