如果表是普通类型,我想在节的最后一个单元格和下一节的标题之间添加一些空格
我该怎么做?
答案 0 :(得分:1)
你可以尝试
func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
return 20
}
func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
return UIView()
}
答案 1 :(得分:1)
您可以使用页脚视图
func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
return UIView()
}
要避免粘性页脚,请使用allowFooterViewsToFloat()函数
public extension UITableView {
func allowsHeaderViewsToFloat() -> Bool {
return true
}
func allowsFooterViewsToFloat() -> Bool {
return false
}
}
答案 2 :(得分:0)
只需在部分末尾添加空单元格即可完成。