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 created a custom UITableViewCell. The table view is showing data fine. What I am stuck in is when user touches cell of tableview, then I want to show the background color of the cell other than the default [blue color] values for highlighting the selection of cell. I use this code but nothing happens:

cell.selectedBackgroundView.backgroundColor=[UIColor blackColor];
share|improve this question

7 Answers

up vote 61 down vote accepted

I think you were on the right track, but according to the class definition for selectedBackgroundView:

The default is nil for cells in plain-style tables (UITableViewStylePlain) and non-nil for section-group tables UITableViewStyleGrouped).

Therefore, if you're using a plain-style table, then you'll need to alloc-init a new UIView having your desired background colour and then assign it to selectedBackgroundView.

Alternatively, you could use:

cell.selectionStyle = UITableViewCellSelectionStyleGray;

if all you wanted was a gray background when the cell is selected. Hope this helps.

share|improve this answer

No need for custom cells. If you only want to change the selected color of the cell, you can do this:

UIView *bgColorView = [[UIView alloc] init];
[bgColorView setBackgroundColor:[UIColor redColor]];
[cell setSelectedBackgroundView:bgColorView];

Edit: Updated for ARC.

share|improve this answer
20  
This works, but in a grouped UITableView, the rounded corners are lost. – David Mar 24 '11 at 19:38
Thanks. it helps – Mahmud Ahsan Aug 29 '11 at 11:35
5  
Caveat: Make sure your cell's selection style in your storyboard/IB hasn't been set to 'None' by accident. With that sorted, this answer worked for me :) – Jarrod Nov 5 '12 at 4:36

If you have a grouped table with just one cell per section, just add this extra line to the code:

bgColorView.layer.cornerRadius = 10;

UIView *bgColorView = [[UIView alloc] init];
[bgColorView setBackgroundColor:[UIColor redColor]];
bgColorView.layer.cornerRadius = 10;
[cell setSelectedBackgroundView:bgColorView];
[bgColorView release]; 

Don't forget to import QuartzCore.

share|improve this answer
4  
This only works if you have a single cell per section. – johnboiles May 16 '12 at 0:44
You're right. Thanks for the hint, I will edit my answer. – Christian Fritz Jun 11 '12 at 8:38

Create a custom cell for your table cell and in the custom cell class.m put the code below, it will work fine. You need to place the desired color image in selectionBackground UIImage.

- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
    UIImage *selectionBackground = [UIImage imageNamed:@"yellow_bar.png"];
    UIImageView *iview=[[UIImageView alloc] initWithImage:selectionBackground];
    self.selectedBackgroundView=iview;
}
share|improve this answer

One more tip to Christian's way to show rounded corner background for grouped table.

If I use cornerRadius = 10 for cell, it shows four corner's rounded selection background. It's not the same with table view's default UI.

So, I think about easy way to resolve it with cornerRadius. As you can see from the below codes, check about cell's location (top, bottom, middle or topbottom) and add one more sub layers to hide top corner or bottom corner. This just shows exactly same look with default table view's selection background.

I tested this code with iPad splitter view. You can change patchLayer's frame position as you needed.

Please let me know if there is more easier way to achieve same result.

       if (tableView.style == UITableViewStyleGrouped) {
            if (indexPath.row == 0) {
                cellPosition = CellGroupPositionAtTop;
            } else {
                cellPosition = CellGroupPositionAtMiddle;
            }

            NSInteger numberOfRows = [tableView numberOfRowsInSection:indexPath.section];
            if (indexPath.row == numberOfRows - 1) {
                if (cellPosition == CellGroupPositionAtTop) {
                    cellPosition = CellGroupPositionAtTopAndBottom;
                } else {
                    cellPosition = CellGroupPositionAtBottom;
                }
            }

            if (cellPosition != CellGroupPositionAtMiddle) {
                bgColorView.layer.cornerRadius = 10;
                CALayer *patchLayer;
                if (cellPosition == CellGroupPositionAtTop) {
                    patchLayer = [CALayer layer];
                    patchLayer.frame = CGRectMake(0, 10, 302, 35);
                    patchLayer.backgroundColor = YOUR_BACKGROUND_COLOR;
                    [bgColorView.layer addSublayer:patchLayer];
                } else if (cellPosition == CellGroupPositionAtBottom) {
                    patchLayer = [CALayer layer];
                    patchLayer.frame = CGRectMake(0, 0, 302, 35);
                    patchLayer.backgroundColor = YOUR_BACKGROUND_COLOR;
                    [bgColorView.layer addSublayer:patchLayer];
                }
            }
        }
share|improve this answer

I want to note that the XIB editor offers you the following standard options:

Section: blue/gray/none

(the right-hand column with options, 4th tab, first group "Table View Cell", 4th subgroup, the 1st of 3 items reads "Selection")

Probably what you want to do may be achieved by selecting the right standard option.

share|improve this answer

Use [cell setClipsToBounds:YES]; for Grouped style cell

share|improve this answer
Unfortunately clipping to bounds has no affect on the selected background view. – tyler Jan 22 at 16:43

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.