vote up 6 vote down star
6

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?

flag

6 Answers

vote up 4 vote down check

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|flag
e.g. myCell.contentView.backgroundColor = [ UIColor greenColor ]; – JuBu1324 Jul 14 at 20:10
vlado.grigorov's answer is more flexible - see William Denniss' answer – JuBu1324 Jul 14 at 20:35
vote up 1 vote down

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|flag
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
vote up 13 vote down

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|flag
If you do this, make sure to set the opaque property to NO as well. – Kevin Ballard Mar 8 at 6:03
vote up 2 vote down

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|flag
vote up 3 vote down

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|flag
Great solution. Thanks! – CalebHC Aug 9 at 20:04
vote up 0 vote down

How do I change the target UITableView's cell's background per user's touch (rather than the default blue)?

  • (void)tableView:(UITableView *)theTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    UITableViewCell *cell = [theTableView cellForRowAtIndexPath:indexPath]; cell.contentView.backgroundColor = [UIColor redColor]; // e.g., want red vs blue.

    [cell.contentView setNeedsDisplay];

    [theTableView deselectRowAtIndexPath:indexPath animated:NO]; DJMyJournalFolderCellController *controller = [self.feedItems objectAtIndex:indexPath.row]; DJNewsSectionViewController *viewController = [[DJNewsSectionViewController alloc] initWithNibName:@"RSSViewController" bundle:nil]; viewController.section = controller.item;

    [[self navigationController] pushViewController:viewController animated:YES];

    [viewController release];

}

I tried to force the cell to re-display with [ setNeedsDisplay] but it doesn't work.

Ric.

link|flag

Your Answer

Get an OpenID
or

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