从tableview中删除不必要的行

时间:2017-03-12 20:47:35

标签: ios swift uitableview uitextfield

我的tableview中有两个单元格,每个单元格都有一个文本字段。在这两个细胞之后是许多添加品系,即使没有细胞可以遵循。如何删除这些线条以创建更清晰的外观。

旁注: 我没有使用通过故事板创建的静态单元格的原因是因为情况需要通过代码创建单元格。

enter image description here

2 个答案:

答案 0 :(得分:2)

要删除额外显示的空单元格,只需将tableFooterView设置为空视图

tableView.tableFooterView = UIView()

答案 1 :(得分:2)

这是针对Objective-C

tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];

Swift 3

tableView.tableFooterView = UIView(frame: .zero)