答案 0 :(得分:1)
将tableView's
backgroundColor
设为gray
颜色,将tableFooterView
设为空UIView
self.tableView.tableFooterView = UIView()
self.tableView.backgroundColor = .gray
答案 1 :(得分:1)
添加以下行
self.tableView.tableFooterView = UIView()
它将完美运作。
答案 2 :(得分:1)
如果因为tableview页脚,则使用下面的委托方法,如果它的背景视图颜色修改你的tableview以适合父视图rect
func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
return UIView()
}
func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
return 0
}