【UITableView】坑一:tableView:heightForHeaderInSection:方法不执行

奚和光
2023-12-01

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;

 类似资料: