答案 0 :(得分:10)
答案 1 :(得分:2)
将UITableView的样式更改为“Grouped”
答案 2 :(得分:1)
尝试这些..
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 30; //according to your need..
}
我希望它有所帮助......
答案 3 :(得分:1)
首先,iOS设置不使用ViewForSection,否则Section视图将放在顶部tableView中。
您可以为该特定indexPath返回一个空的containerView单元格并在其中停止didSelect,但请记住将空单元格包含在您用于其他单元格的数组中。
答案 4 :(得分:0)
只需根据需要在表格中添加页脚高度:
func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
return 44
}