I have multiples tables delegated to a UIViewController. In IOS4 I used the function: (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section to change the background of some table header section. In those that do not have sections, I return nil and all works fine.

In IOS5 if I return nil, the system puts one default header section. How do I hide the header section in the tables that I have only one section?

link|improve this question

71% accept rate
feedback

1 Answer

up vote 42 down vote accepted

Per the release notes, your UITableViewDelegate MUST now return 0.0 from tableView:heightForHeaderInSection:

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
    return 0.0;
}

Seems like a real pain. I don't know why they changed this, as everyone relies on the prior behavior - but they must have their reasons.

link|improve this answer
Thank you!!!!!! – flopes Aug 23 '11 at 17:29
No problem. If you could mark my answer as "Accepted" when you get the change I'd be most appreciative! – Steve Aug 23 '11 at 17:30
2  
What if there is a header? Does returning a height of zero override the height of the header? – Ryan Booker Sep 9 '11 at 7:08
1  
Ryan, in that case you should probably measure your header like you do with table cells and return that value. – PEZ Oct 15 '11 at 9:51
I think the header may be for aesthetic purposes. For example, I have a tabbed app, and one of the tabs didn't have section headers defined. When I switched to that tab, it always looked a bit off. So I will keep the empty header there for aesthetic purposes. I don't think it will be confusing to users. – JPK Oct 15 '11 at 20:23
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.