当前位置:主页 > 移动开发 > iOS代码 >

Swift 去除 TableView 多余的空Cell中的横线的方法

时间:2021-03-26 09:20:45 | 栏目:iOS代码 | 点击:

在使用 UITableViewController 的时候,多余的空 cell 会默认展示很多横线。

如何去除呢?

footerHeight 反一个极小的值就可以了

override func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
  return 0.001
}

结果

您可能感兴趣的文章:

相关文章