我正在使用UITableView
分组并使用多个部分。我正在使用这些代码隐藏部分的页脚。
self.tableView.estimatedSectionFooterHeight = 0
self.tableView.sectionFooterHeight = 0
public func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
return 0.0
}
public func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
return UIView()
}
第0部分的仅页脚未被隐藏。
以下是截图:
请帮忙!