Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a UITableView with two sections. It is a simple table view. I am using viewForHeaderInSection to create custom views for these headers. So far, so good.

The default scrolling behavior is that when a section is encountered, the section header stays anchored below the Nav bar, until the next section scrolls into view.

My question is this: can I change the default behavior so that the section headers do NOT stay anchored at the top, but rather, scroll under the nav bar with the rest of the section rows?

Am I missing something obvious?

Thanks.

share|improve this question

14 Answers

The way I solved this problem is to adjust the contentOffset according to the contentInset in the UITableViewControllerDelegate (extends UIScrollViewDelegate) like this:

- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
       CGFloat sectionHeaderHeight = 40;
   if (scrollView.contentOffset.y<=sectionHeaderHeight&&scrollView.contentOffset.y>=0) {
       scrollView.contentInset = UIEdgeInsetsMake(-scrollView.contentOffset.y, 0, 0, 0);
   } else if (scrollView.contentOffset.y>=sectionHeaderHeight) {
       scrollView.contentInset = UIEdgeInsetsMake(-sectionHeaderHeight, 0, 0, 0);
   }
}

Only problem here is that it looses a little bit of bounce when scrolling back to the top.

share|improve this answer
1  
this seems to work well, though the scrollbar is not accurate – cannyboy Nov 1 '10 at 16:48
actually, scrollbars are fine – cannyboy Nov 1 '10 at 21:59
@awulf AWESOME SOLUTION, thanks! – Rog Oct 28 '11 at 15:20
Perfect solution than the above one. – prathumca Dec 4 '11 at 13:21
7  
This solution does not handle tap-on-menubar correctly, which is supposed to scroll to the top of the list. – Reid May 2 '12 at 18:47
show 6 more comments

You can also add a section with zero rows at the top and simply use the footer of the previous section as a header for the next.

share|improve this answer
1  
+1 This is best answer, tried it and it works. – bentford Apr 12 '11 at 20:39
9  
In my case where I have more than 2 sections, the footer will anchors at the bottom.. – Joseph Lin May 11 '11 at 20:35
1  
Colin's answer works better for me. – Joseph Lin May 11 '11 at 20:43
+1 for innovative solution. – tinytiger Jul 18 '11 at 15:02
1  
This is creative but you need to do adjust the indexPath if you're using an NSFetchedResultsController to load the table. – XJones Nov 16 '11 at 23:46
show 3 more comments

Were it me doing this, I'd take advantage of the fact that UITableViews in the Plain style have the sticky headers and ones in the Grouped style do not. I'd probably at least try using a custom table cell to mimic the appearance of Plain cells in a Grouped table.

I haven't actually tried this so it may not work, but that's what I'd suggest doing.

share|improve this answer
Probably would work, but has it been tried? And it seems like a lot of work when @voidStern's answer works perfectly!! – bentford Apr 12 '11 at 20:37
voidStern's answer doesn't work for me when I have more than two sections. Colin's answer is simpler/more elegant, without the need to manually shift section number and add section count. – Joseph Lin May 11 '11 at 20:42
Tips: use tableView.separatorColor = [UIColor clearColor]; to mimic a plain table view. – Joseph Lin May 11 '11 at 20:42
FYI, this works well. I haven't implemented this specifically but I have made custom cells that look like plain cells in a grouped table. – XJones Nov 16 '11 at 23:47
2  
I tried doing this, but when I couldn't make the grouped table cells look like the plain ones, i.e. remove the left and right margin either side of the cells. How did you do this? – Adam Carter Aug 8 '12 at 14:32
show 2 more comments

I know it comes late, but I have found the definitive solution!

What you want to do is if you have 10 sections, let the dataSource return 20. Use even numbers for section headers, and odd numbers for section content. something like this

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    if (section%2 == 0) {
        return 0;
    }else {
        return 5;
    }
}

-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
    if (section%2 == 0) {
        return [NSString stringWithFormat:@"%i", section+1];
    }else {
        return nil;
    }
}

Voilá! :D

share|improve this answer
great idea. but if you have section index titles, I suspect this will mess them up. – roocell Jan 12 '12 at 14:53
why? you can do the same with section titles. Just remember nil for odd numbers and a title for the even number. – LocoMike Jan 12 '12 at 19:43
yes - this method works great. It was a lot of bookkeeping (probably to do with the way i have to get the section titles) But it worked. The trick is that numberOfRowsInSection and cellForRowAtIndexPath uses if (section%2!=0 && section!=0) whereas the titleForHeaderInSection and the other section index functions use if (section%2==0) – roocell Jan 13 '12 at 15:38
the originator should choose this as the answer. It'd be great if there was a way to subclass uitableview to anchor the section titles automatically. – roocell Jan 13 '12 at 16:02
This worked the best for me. I tried @Colin's solution first, but it didn't work well with the heavily customized UITableView that I'm using. – kubi Mar 13 '12 at 19:10

There are several things that need done to solve this problem in a non-hacky manner:

  1. Set the table view style to UITableViewStyleGrouped
  2. Set the table view backgroundColor to [UIColor clearColor]
  3. Set the backgroundView on each table view cell to an empty view with backgroundColor [UIColor clearColor]
  4. If necessary, set the table view rowHeight appropriately, or override tableView:heightForRowAtIndexPath: if individual rows have different heights.
share|improve this answer
(+1) @Neil, I tried your answer but unfortunately, for UITableViewStyleGrouped the table cells have extra margins that change their alignment with the header. This is a problem when you actually want to depict a multi-column table and use the header to show column titles (and then have the individual table entries align with these titles). – brainjam Sep 29 '11 at 19:17

Set the headerView of the table with a transparent view with the same height of the header in section view. Also initi the tableview with a y frame at -height.

self.tableview = [[UITableView alloc] initWithFrame:CGRectMake(0, - height, 300, 400)];

UIView *headerView = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, width, height)] autorelease];
[self.tableView setTableHeaderView:headerView];
share|improve this answer

I found an alternative solution, use the first cell of each section instead a real header section, this solution don't appears so clean, but works so fine, you can use a defined prototype cell for your headers section, and in the method cellForRowAtIndexPath ask for the indexPath.row==0, if true, use the header section prototype cell, else use your default prototype cell.

share|improve this answer
If you still want to work with indexPath.row & indexPath.section, make sure you return a height of 0.0f for - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section so your headers are invisible. – Soup Nov 5 '12 at 23:33

Originally posted Here, a quick solution using the IB. The same can be done programmatically though quite simply.

A probably easier way to achieve this (using IB):

Drag a UIView onto your TableView to make it its header view.

  1. Set that header view height to 100px
  2. Set the tableview contentInset (top) to -100
  3. Section headers will now scroll just like any regular cell.

Some people commented saying that this solution hides the first header, however I have not noticed any such issue. It worked perfectly for me and was by far the simplest solution that I've seen so far.

share|improve this answer
Note that you should probably set the view to use a background color of clearcolor, otherwise if you scroll past the top you see white in the bounce. – Doc Jan 30 at 17:21
you are my hero! thanks! – Markiz Lonkly Mar 27 at 12:20

I was not happy with the solutions described here so far, so I tried to combine them. The result is the following code, inspired by @awulf and @cescofry. It works for me because I have no real table view header. If you already have a table view header, you may have to adjust the height.

// Set the edge inset
self.tableView.contentInset = UIEdgeInsetsMake(-23.0f, 0, 0, 0);

// Add a transparent UIView with the height of the section header (ARC enabled)
[self.tableView setTableHeaderView:[[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 100.0f, 23.0f)]];
share|improve this answer

I add the table to a Scroll View and that seems to work well.

share|improve this answer

Check my answer here. This is the easiest way to implement the non-floating section headers without any hacks.

share|improve this answer

@LocoMike's answer best fitted my tableView, however it broke when using footers as well. So, this is the corrected solution when using headers and footers:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return (self.sections.count + 1) * 3;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if (section % 3 != 1) {
        return 0;
    }
    section = section / 3;
    ...
}

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    if (section % 3 != 0) {
        return nil;
    }
    section = section / 3;
    ...
}

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
    if (section % 3 != 0) {
        return 0;
    }
    section = section / 3;
    ...
}

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
    if (section % 3 != 2) {
        return 0;
    }
    section = section / 3;
    ...
}

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    if (section % 3 != 0) {
        return nil;
    }
    section = section / 3;
    ...
}

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
    if (section % 3 != 2) {
        return nil;
    }
    section = section / 3;
    ...
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    int section = indexPath.section;
    section = section / 3;
    ...
}
share|improve this answer

Assign a negative inset to your tableView. If you have 22px high section headers, and you don't want them to be sticky, right after you reloadData add:

self.tableView.contentInset = UIEdgeInsetsMake(-22, 0, 0, 0); 
self.tableView.contentSize = CGSizeMake(self.tableView.contentSize.width, self.tableView.contentSize.height+22); 

Works like a charm for me. Works for section footers as well, just assign the negative inset on the bottom instead.

share|improve this answer
This just chops off the first header?? – cannyboy Nov 1 '10 at 16:22
This didn't work for me. – bentford Apr 12 '11 at 20:25

I've learned that just setting the tableHeaderView property does it, i.e. :

 tableView.tableHeaderView = customView;

and that's it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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