My current project's UITableViewCell behavior is baffling me. I have a fairly straightforward subclass of UITableViewCell. It adds a few extra elements to the base view (via [self.contentView addSubview:...]
and sets background colors on the elements to have them look like black and grey rectangular boxes.
Because the background of the entire table has this concrete-like texture image, each cell's background needs to be transparent, even when selected, but in that case it should darken a bit. I've set a custom semi-transparent selected background to achieve this effect:
UIView *background = [[[UIView alloc] initWithFrame:self.bounds] autorelease]; background.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.6]; background.opaque = NO; [self setSelectedBackgroundView:background];
And although that yields the right look for the background, a weird side effect happens when I select the cell; all other backgrounds are somehow turnt off. Here's a screenshot. The bottom cell looks like it should and is not selected. The top cell is selected, but it should display the black and grey rectangular areas, yet they are gone!
Who knows what's going on here and even more important: how can I correct this?
What is happening is that each subview inside the TableViewCell will receive the setSelected and setHighlighted methods. The setSelected method will remove background colors but if you set it for the selected state it will be corrected.
For example if those are UILabels added as subviews in your customized cell, then you can add this to the setSelected method of your TableViewCell implementation code:
- (void)setSelected:(BOOL)selected animated:(BOOL)animated { [super setSelected:selected animated:animated]; self.textLabel.backgroundColor = [UIColor blackColor]; }
where self.textLabel would be whatever those labels are that are shown in the picture above
I'm not sure where your adding your selected view, I usually add it in the setSelected method.
Alternatively, you can subclass the UILabel and override the setHighlighted method like so:
-(void)setHighlighted:(BOOL)highlighted { [self setBackgroundColor:[UIColor blackColor]]; }
The cell highlighting process can seem complex and confusing if you don't know whats going on. I was thoroughly confused and did some extensive experimentation. Here's the notes on my findings that may help somebody (if anyone has anything to add to this or refute then please comment and I will endeavour to confirm and update)
In the normal “not selected” state
selectedBackgroundView
is HIDDENbackgroundView
is visible (so provided your contentView is transparent you see the backgroundView
or (if you have not defined a backgroundView
you'll see the background colour of the UITableView
itself)A cell is selected, the following occurs immediately with-OUT any animation:
backgroundColor
cleared (or set to transparent), label etc text color's change to their selected colourselectedBackgroundView
becomes visible (this view is always the full size of the cell (a custom frame is ignored, use a subview if you need to). Also note the backgroundColor
of subViews
are not displayed for some reason, perhaps they're set transparent like the contentView
). If you didn't define a selectedBackgroundView
then Cocoa will create/insert the blue (or gray) gradient background and display this for you)backgroundView
is unchangedWhen the cell is deselected, an animation to remove the highlighting starts:
selectedBackgroundView
alpha property is animated from 1.0 (fully opaque) to 0.0 (fully transparent).backgroundView
is again unchanged (so the animation looks like a crossfade between selectedBackgroundView
and backgroundView
)contentView
get redrawn in the "not-selected" state and its subview backgroundColor
's become visible again (this can cause your animation to look horrible so it is advisable that you don't use UIView.backgroundColor
in your contentView
)CONCLUSIONS:
If you need a backgroundColor
to persist through out the highlight animation, don't use the backgroundColor
property of UIView
instead you can try (probably with-in tableview:cellForRowAtIndexPath:
):
A CALayer with a background color:
UIColor *bgColor = [UIColor greenColor]; CALayer* layer = [CALayer layer]; layer.frame = viewThatRequiresBGColor.bounds; layer.backgroundColor = bgColor.CGColor; [cell.viewThatRequiresBGColor.layer addSublayer:layer];
or a CAGradientLayer:
UIColor *startColor = [UIColor redColor]; UIColor *endColor = [UIColor purpleColor]; CAGradientLayer* gradientLayer = [CAGradientLayer layer]; gradientLayer.frame = viewThatRequiresBGColor.bounds; gradientLayer.colors = @[(id)startColor.CGColor, (id)endColor.CGColor]; gradientLayer.locations = @[[NSNumber numberWithFloat:0],[NSNumber numberWithFloat:1]]; [cell.viewThatRequiresBGColor.layer addSublayer:gradientLayer];
I've also used a CALayer.border technique to provide a custom UITableView seperator:
// We have to use the borderColor/Width as opposed to just setting the // backgroundColor else the view becomes transparent and disappears during // the cell's selected/highlighted animation UIView *separatorView = [[UIView alloc] initWithFrame:CGRectMake(0, 43, 1024, 1)]; separatorView.layer.borderColor = [UIColor redColor].CGColor; separatorView.layer.borderWidth = 1.0; [cell.contentView addSubview:separatorView];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With