up vote 49 down vote favorite
41
share [g+] share [fb]

I would like to customize the background (and maybe the border too) of all of the UITableViewCells within my UITableView. So far I have not been able to customize this stuff, so I have a bunch of white background cells which is the default.

Is there a way to do this with the iPhone SDK?

link|improve this question

feedback

10 Answers

up vote 38 down vote accepted

You need to set the backgroundColor of the cell's contentView to your color. If you use accessories (such as disclosure arrows, etc), they'll show up as white, so you may need to roll custom versions of those.

link|improve this answer
8  
e.g. myCell.contentView.backgroundColor = [ UIColor greenColor ]; – JoBu1324 Jul 14 '09 at 20:10
vlado.grigorov's answer is more flexible - see William Denniss' answer – JoBu1324 Jul 14 '09 at 20:35
Any links on how to roll one's own of UITableViewCellAccessoryCheckmark, for instance? Thanks. – Yar Sep 9 '11 at 0:55
feedback

Here is the most efficient way I have come across to solve this problem, use the willDisplayCell delegate method (this takes care of the white color for the text label background as well when using cell.textLabel.text and/or cell.detailTextLabel.text):

  • (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath { ... }

When this delegate method is called the color of the cell is controlled via the cell rather than the table view, as when you use:

  • (UITableViewCell *) tableView: (UITableView *) tableView cellForRowAtIndexPath: (NSIndexPath *) indexPath { ... }

So within the body of the cell delegate method add the following code to alternate colors of cells or just use the function call to make all the cells of the table the same color.

if (indexPath.row % 2)
{
	[cell setBackgroundColor:[UIColor colorWithRed:.8 green:.8 blue:1 alpha:1]];
}
else [cell setBackgroundColor:[UIColor clearColor]];

This solution worked well in my circumstance...

link|improve this answer
1  
Great solution. Thanks! – CalebHC Aug 9 '09 at 20:04
This is a way cleaner solution. Most of the other solutions require either subclassing the UITableViewCell. vlado.grigorov's solution don't work for me. – Ronnie Liew Jan 24 '10 at 17:19
Indeed, and this is the method Apple themselves recommend according to various WWDC presentations I have seen. – Mike Weller Apr 6 '10 at 8:08
Nice - EXCEPT when you need to add new rows at top of the list. This method make all additions same color. Refresh does fix it, but takes unnecessary time. Found out yesterday... – JOM Apr 16 '10 at 4:13
feedback

This is really simple, since OS 3.0 just set the background color of the cell in the willDisplayCell method. You must not set the color in the cellForRowAtIndexPath.

This works for both the plain and grouped style :

Code:

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

P.S: Here the documentation extract for willDisplayCell :

"A table view sends this message to its delegate just before it uses cell to draw a row, thereby permitting the delegate to customize the cell object before it is displayed. This method gives the delegate a chance to override state-based properties set earlier by the table view, such as selection and background color. After the delegate returns, the table view sets only the alpha and frame properties, and then only when animating rows as they slide in or out."

I've found this information in this post from colionel. Thank him!

link|improve this answer
never knew this! great tip. – shawnwall Feb 21 '11 at 1:21
1  
This should be marked as the correct answer as you dont even have to anything if you have a disclosureIndiator – Ashish Awaghad Jun 6 '11 at 6:14
This doesn't work if you want a different cell background colour to the table views background for me. – Chris Jun 29 '11 at 3:53
Works well. Easiest solution to the problem. – ChrisP Nov 2 '11 at 21:38
feedback

The best approach I've found so far is to set a background view of the cell and clear background of cell subviews. Of course, this looks nice on tables with indexed style only, no matter with or without accessories.

Here is a sample where cell's background is panted yellow:

UIView* backgroundView = [ [ [ UIView alloc ] initWithFrame:CGRectZero ] autorelease ];
backgroundView.backgroundColor = [ UIColor yellowColor ];
cell.backgroundView = backgroundView;
for ( UIView* view in cell.contentView.subviews ) 
{
    view.backgroundColor = [ UIColor clearColor ];
}
link|improve this answer
1  
If you do this, make sure to set the opaque property to NO as well. – Kevin Ballard Mar 8 '09 at 6:03
6  
Using transparent cell controls is really not recommended. The scrolling performance will be affected a lot which is why Apple always says to use opaque controls. – Mike Weller Apr 6 '10 at 8:03
+1 Best answer to take into consideration of the accessory views – DonnaLea Sep 15 '10 at 23:49
On iOS 4.2 and later it looks like the loop is no longer necessary. – Frank Schmitt Jan 25 '11 at 5:59
feedback

Simply put this in you UITableView delegate class file (.m):


- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
  UIColor *color = ((indexPath.row % 2) == 0) ? [UIColor colorWithRed:255.0/255 green:255.0/255 blue:145.0/255 alpha:1] : [UIColor clearColor];
  cell.backgroundColor = color;
}

Enjoy!

link|improve this answer
feedback

vlado.grigorov has some good advice - the best way is to create a backgroundView, and give that a colour, setting everything else to the clearColor. Also, I think that way is the only way to correctly clear the colour (try his sample - but set 'clearColor' instead of 'yellowColor'), which is what I was trying to do.

link|improve this answer
An advantage to this approach is that you can keep the color a design time property in Interface Builder. One less design issue that requires developer interaction. – Lee Whitney Aug 12 '11 at 23:34
feedback

Customizing the background of a table view cell eventually becomes and "all or nothing" approach. It's very difficult to change the color or image used for the background of a content cell in a way that doesn't look strange.

The reason is that the cell actually spans the width of the view. The rounded corners are just part of its drawing style and the content view sits in this area.

If you change the color of the content cell you will end up with white bits visible at the corners. If you change the color of the entire cell, you will have a block of color spanning the width of the view.

You can definitely customize a cell, but it's not quite as easy as you may think at first.

link|improve this answer
1  
This is definitely true for cells in Grouped tables, but Plain tables don't have as much to worry about. An unadorned cell with no accessories should look fine. – Ben Gottlieb Nov 11 '08 at 23:54
Ben - good point. I primarily use grouped tables but as you mention plain tables don't suffer from any of these problems. – Andrew Grant Nov 12 '08 at 18:45
feedback

I concur with Seba, I tried to set my alternating row color in the rowForIndexPath delegate method but was getting inconsistent results between 3.2 and 4.2. The following worked great for me.

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {

    if ((indexPath.row % 2) == 1) {
        cell.backgroundColor = UIColorFromRGB(0xEDEDED);
        cell.textLabel.backgroundColor = UIColorFromRGB(0xEDEDED);
        cell.selectionStyle = UITableViewCellSelectionStyleGray;
    }
    else
    {
        cell.backgroundColor = [UIColor whiteColor];
        cell.selectionStyle = UITableViewCellSelectionStyleGray;
    }

}
link|improve this answer
This worked beautifully! – Joe D'Andrea Aug 4 '11 at 21:49
feedback

Create a view and set this as background view of the cell

UIView *lab = [[UIView alloc] initWithFrame:cell.frame];
            [lab setBackgroundColor:[UIColor grayColor]];
            cell.backgroundView = lab;
            [lab release];
link|improve this answer
feedback

My solution is to add the following code to the cellForRowAtIndexPath event:

UIView *solidColor = [cell viewWithTag:100];
            if (!solidColor) {

                solidColor = [[UIView alloc] initWithFrame:cell.bounds];
                solidColor.tag = 100; //Big tag to access the view afterwards
                [cell addSubview:solidColor];
                [cell sendSubviewToBack:solidColor];
                [solidColor release];
            }
            solidColor.backgroundColor = [UIColor colorWithRed:254.0/255.0
                                                         green:233.0/255.0
                                                          blue:233.0/255.0
                                                         alpha:1.0];

Works under any circumstance even with disclosure buttons and is better for your logic to act on cells color state in cellForRowAtIndexPath than in cellWillShow event I think.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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