Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to have a background image used behind a section in a UITableView?

I can't think of how to achieve this, any help would be greatly appreciated, thanks.

share|improve this question
it seems like what you want to do would be possible either with layers or by using subviews. Can you post a mockup of what you're looking for? – BrianV Jul 29 '12 at 15:27
I'll try and get an image of what I need uploaded soon! Normally you would have a background on each cell, which could be a colour, or an image. However, I want a single background (In this case an image) dropped behind all the cells in a single section of my table. – Josh Kahane Jul 29 '12 at 15:32
I understand. There is a backgroundView property on UITableView and there is also a view for the section header. Not sure if those would help at all. – BrianV Jul 29 '12 at 15:42
Sadly not, the background of the table is static and sits behind the table. While the header merely sits above the cells in a specific section. I need a background to go behind a section of my table and scroll with it. – Josh Kahane Jul 29 '12 at 15:44

1 Answer

up vote 0 down vote accepted

You can place a view behind your table view, set the table view's background colour to [UIColor clearColor] and you will see the view behind

[self.view addSubview:self.sectionBackgroundView];
[self.view addSubview:self.tableView];
self.tableView.backgroundColor = [UIColor clearColor];

the drawback to this is that this will not be only limited to the section you want, one way I can think of to make sure this backing view is limited to one section only is to adjust the frame of the backing view to the area covered by the section whenever the table view is scrolled

- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    CGRect sectionFrame = [self.tableView rectForSection:sectionWithBackground];
    self.sectionBackgroundView.frame = sectionFrame;
}

you will need to do this at the start (probably in viewWillAppear:) as well to make sure the view starts off correctly.

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.