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

Why doesn't UITableViewCell background color work (set in interface builder)?

I note from some googling that the follow code set in your custom subclass of UITableViewController does work (see below):

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    cell.backgroundColor = [UIColor redColor];
}

But I would still like to just understand why interface builder has a background color setting for the TableViewCell, which effectively doesn't seem to work?

EDIT

Duplicate question. This question has the answer.

share|improve this question
You need to show how you're loading your UITableViewCell from nib, you may have a problem there. – Bogatyr Mar 2 '11 at 11:50
I can confirm the OP -- strange. But notice, in IB, the UITableViewCell does not look like a plain version of a small View, it has an oval "content" area imposed on top of the background. I think this is an indication that there is something on top of the background view. – Bogatyr Mar 2 '11 at 12:01
Yup, there's a load of stuff in there, including a view that is part of the table cell called "backgroundView". – occulus Mar 2 '11 at 12:19
One thing I found is that cell.backgroundColor = [UIColor redColor]; does work in didSelectRowAtIndexPath if your are using a grouped table style. plain doesn't work. – Mike Nov 23 '11 at 6:17
@Greg Please mark the correct answer which suits you. – Easwaramoorthy Kanagaraj Feb 22 at 14:00

10 Answers

What worked for me is creating my own UIView object to be set as the background view of the UITableViewCell. In the cellForRowAtIndexPath:

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
UIView* bgview = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 1, 1)];
bgview.opaque = YES;
bgview.backgroundColor = [UIColor orangeColor];
[cell setBackgroundView:bgview];
share|improve this answer

Trying to set the background colour of the UITableViewCell itself is not how you should be doing it. A table cell has a collection of five useful views you can access, one of which is backgroundView.

Recommended reading:

http://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html

and then:

http://cocoawithlove.com/2010/12/uitableview-construction-drawing-and.html

share|improve this answer
But when you're loading your own tableview cell from nib, you expect to get what you set up in Interface Builder. So, just which of the many views of the UITableViewCell are you editing when you load the cell from nib? – Bogatyr Mar 2 '11 at 12:09
Not sure I understand your question. But when you load a UITableViewCell from a nib, you know which cell you're loading, because the method in question (cellForRowAtIndexPath:) gets passed in a NSIndexPath. You can customize a table cell, if necessary, once it has been loaded from the nib. And note that you can hook up the backgroundView etc. parts of UITableViewCell from within interface builder. – occulus Mar 2 '11 at 12:14
thanks occulus - I had guessed it was something to do with the number of views that in a UITableViewCell, but I was more looking for a simple answer why Apple would have you able to set what looks to be the overall "background" in Interface Builder, whereas in fact it doesn't seem to work. Is this really a usability bug in Interface Builder arguably for example? – Greg Mar 2 '11 at 12:51
I see what you mean Greg. It does seem slightly misleading that interface builder lets you set the background in the usual way, but remember also that a UITableViewCell as seen in IB has a dotted-oval outline with "Content view", so that is also a hint that this is a slightly unusual component in that it contains other views which make up its appearance. – occulus Mar 2 '11 at 14:12
1  
thanks, it comforting to here the a experienced developer understands where I'm coming from :) So I'm not totally misunderstanding something. Perhaps the simple answer is that Apple's IB's design is generic to be applied to multiple kinds of components, and is also targeted at a highly technical audience (developers), and hence they felt the need to properly customise the interface for each scenario (versus leave generic) was not worth it given this...make sense? – Greg Mar 2 '11 at 20:41

It's a bit late, but I just ran into this issue... Setting the background color on the contentView works fine:

cell.contentView.backgroundColor = [UIColor redColor];
share|improve this answer

It works perfectly, if you pick the tableview and set background to for example red the whole table will be red. maybe you do not linked the table or something

hope it helped

share|improve this answer
Not how you do it. Even if your approach appears to work, it's a bad idea. See my answer. – occulus Mar 2 '11 at 12:07
hi, i picked the table view in IB in View section I set background to a color and simply saved it.and it works – Csabi Mar 2 '11 at 12:13
To rephrase -- his question wasn't "How do I change background of whole table". Hsi question is about the background of a table cell. – occulus Mar 2 '11 at 12:15
1  
thanks Csabi - this is useful info - I might leave the question open still however re the specific question I was asking - whether there is an answer a non-Apple person knows I'm not sure – Greg Mar 2 '11 at 12:55
1  
+1. Thanks Csabi. It works well for prototype cells – Dexter Aug 22 '12 at 18:58
show 2 more comments

This is simple and works: in interface builder, add a view object to the UITableViewCell of the same dimensions, and place your controls inside that view. Then you get whatever background color you want.

Edit: here's a reason to accept, it just struck me: take a careful look at what you get when you double click on a UITableViewCell in IB that you place into your nib, to start adding stuff to it: you don't get a plain rectangle looking view, you get an oval rectangle that says quite clearly: Content View. So all you can do is set the content view of the UITableViewCell in IB, and setting the background color property of the content view does not produce the color change in the table. As the docs say, UITableViewCells are complex beasts with many parts with a lot going on behind the scenes in terms of the UITableView adjusting it and fiddling with it.

share|improve this answer
thanks for the info Bogatyr - I won't accept just for the fact the question is searching for a layman's term type answer re why IB is setup the way it is - e.g. Is this really a usability bug in Interface Builder arguably for example? – Greg Mar 2 '11 at 12:53
[cell.textLabel setBackgroundColor:[UIColor clearColor]];
[cell.contentView setBackgroundColor:[UIColor redColor]];
share|improve this answer
some explanation would help this answer – dove Dec 13 '12 at 11:47

you should always provide changes for cell in willDisplayCell:forRowAtIndex instead of cellForRowAtIndex method , as per Apple Documentation

This Works !!

share|improve this answer
up vote 0 down vote accepted

(try this)

Apple's IB's design is generic to be applied to multiple kinds of components, and is also targeted at a highly technical audience (developers). Hence it has not been designed (as an application) to fully customise the interface properly for each component/situation type. So in this case it is the case the ability to seemingly set the background-color is somewhat misleading.

share|improve this answer

Y not, use setBackgroundColor

self.table.separatorColor=[UIColor whiteColor];
[table setBackgroundColor:[UIColor colorWithRed:.8 green:.8 blue:1 alpha:1]];
share|improve this answer

Make sure before defining a cell color your backgroundView is null

cell.backgroundView = nil;
cell.backgroundColor = [UIColor redColor];
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.