I have a custom UITableViewCell
subclass. I have set the contentView
of my cell subclass to a custom UIView
class in which i am overriding -drawRect:
and doing all of the drawing there.
Also, I am setting cell.contentView.opaque = NO
in order to achieve transparency in certain areas of the cell (unfortunately, a backgroud image behind the table must show thru each cell in certain parts to achieve a stylistic effect. i know this is a performance hit. it must be so).
Problem: I still see the default pretty blue gradient background being drawn behind my cell (in the transparent areas) when it is selected or highlighted (being pressed). This is obscuring the image behind the table, which is bad.
Goal: To prevent the blue gradient background from appearing, but still be able to inspect the cell.isSelected
and cell.isHighlighted
properties from within -[MyContentView drawRect:]
to determine how to draw my own custom selection/highlighting.
What I've tried:
setting cell.selectionStyle = UITableViewCellSelectionStyleNone
has the desired effect of preventing the pretty blue gradient selection background, but also prevents the cell.isSelected
and cell.isHighlighted
properties from being properly set, which means i cannot do my own custom selection/highlight drawing
setting cell.selectionBackgroundView = nil
and cell.backgroundView = nil
in the cell's -init
or -prepareForReuse
method does not prevent the blue gradient selection background
setting cell.selectionBackgroundView = nil
in the -[MyContentView -drawRect:]
method does have the desired effect of preventing the blue gradient selection background, but that seems very janky
overriding -[UITableViewCell setSelected:animated:] to be a no-op. this does not have the desired effect of preventing the blue gradient selection background
You must also override setHighlighted: to prevent the blue gradient from ever showing. If you just override setHighlighted: then you end up with a momentary selection effect.
so you'll have these two methods:
- (void)setHighlighted: (BOOL)highlighted animated: (BOOL)animated { // don't highlight } - (void)setSelected: (BOOL)selected animated: (BOOL)animated { // don't select //[super setSelected:selected animated:animated]; }
cell.selectionStyle = UITableViewCellSelectionStyleNone;
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