iOS11后
tableView:heightForHeaderInSection:代理方法方法不执行
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
return 10;
}
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
return 10;
}
设置下面两个属性值后,上面两个方法才能响应
_tableView.sectionHeaderHeight = 0.01;
_tableView.sectionFooterHeight = 0.01;