我的问题与此类似。但那里的解决方案是有效的。 How to remove first cell top separator and last cell bottom separator 我有一个包含3个部分的桌面视图(这是动态的)。我为每个部分都有一个细胞分离器。
tableView.separatorInset = UIEdgeInsets(top: 0, left: 20, bottom: 0, right: 0)
这就是我创造它的方式。 但是,分隔符将与行一起添加到每个部分的顶部和底部。 如何删除每个部分的顶行和底行?
tableView.estimatedSectionHeaderHeight = 42
tableView.sectionHeaderHeight = UITableViewAutomaticDimension
tableView.rowHeight = UITableViewAutomaticDimension
tableView.estimatedRowHeight = 44
我正在以编程方式创建tableView。所以,我无法设置分隔符
样式为无,我需要表格中剩余单元格的分隔符。