Removed the reserved header view margin for Grouped UITableView

35 Views Asked by At

By default, the grouped table view has a reserved vertical margin for every section. I don't want the header view but footer view for table view, so how to drop the margin easily?

1

There are 1 best solutions below

0
On

Override the following method of tableview's delegate to drop the header view's margin directly.

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
    return 0.01; // Removed the section header margin. (couldn't be 0 here, weird)
}