vote up 5 vote down star
2

I am developing an iPhone application, in my table view I wanted custom color for Cell Selection Style, I read the UITableViewCell Class Reference but there are only three constants defined for Selection style (Blue, Gray, None). I saw one application that used a different color than those defined in the reference.

How can we use a color other than those defined in the reference?

Thanks in advance.

flag

65% accept rate
I would strongly recommend Matt Gallagher's approach over the one you accepted! Please consider giving it a look if you haven't already. – Adam Alexander Dec 10 at 18:22

3 Answers

vote up 2 vote down check

Override didSelectRowAtIndexPath: and draw a UIView of a color of your choosing and insert it behind the UILabel inside the cell. I would do it something like this:

UIView* selectedView; //inside your header

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

  UITableViewCell* cell = [tableView cellAtIndexPath:indexPath];
  selectedView = [[UIView alloc] initWithFrame:[cell frame]];
  selectedView.backgroundColor = [UIColor greenColor]; //whatever

  [cell insertSubview:selectedView atIndex:0]; //tweak this as necessary
  [selectedView release]; //clean up

}

You can choose to animate this view out when it gets deselected and will satisfy your requirements.

link|flag
3  
This approach avoids Apple's built-in selectedBackgroundView on every UITableViewCell. If you use the selectedBackgroundView, your selection will animate in and out and will also unselected when instructed. – Matt Gallagher May 18 at 11:51
vote up 12 vote down

The best way to set the selection is to set the selectedBackgroundView on the cell when you construct it.

i.e.

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
    	cell.selectedBackgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"SelectedCellBackground.png"]];
    }

    // configure the cell
}

The image used should have a nice gradient (like the default selection). If you just want a flat color, you can use a UIView instead of a UIImageView and set the backgroundColor to the color you want.

This background is then automatically applied when the row is selected. I've

link|flag
What about for grouped style table views? I just used a rectangle image and it showed through the rounded curves of the tableview cells. +1 for a great answer. – JoePasq Dec 4 at 2:14
1  
For grouped tableview cells you need 4 backgrounds -- top, bottom, middle and top&bottom and you need to apply them based on where the cell is in the group. – Matt Gallagher Dec 8 at 0:17
vote up 0 vote down

Setting the selectedBackgroundView seems to have no effect when the cell.selectionStyle is set to None. When I don't set the style is just uses the default gray.

Using the first suggestion that inserts the custom IView into the cell does manipulate the cell but it doesn't show up when the cell is touched, only after the selected action is completed which is too late because I'm pushing to a new view. How do I get the selected view in the cell to display before the beginning of the selected operation?

link|flag

Your Answer

Get an OpenID
or

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