I want to use the default highlight on a UITableViewCell
when it is tapped. However, I do not want custom subviews (and their subviews) to receive the message to update their highlighted states and therefore disrupt the backgroundColor
property.
Edit
By "subview" I mean any UIView
subclass, not just UITableViewCell
s.
Perhaps this hypothetical situation will better articulate what I'm looking for: I have one UITableViewCell. Call it c. I then add one UIView (call it v) as a subview of c. When I tap c, I want c to become highlighted (standard blue background with white font color), but I do not want v to become highlighted. How do I make this happen?
First of all, UITableView enumarates all the subviews, and sends them highlight messages.
So even if you put a UILabel in your view, no matter how deep it is, it traverses all views (by using subviews property).
One solution can be (which is IOS4+), overriding subviews property, and cheat tableview's highlight function that we do not have any subviews. To do that we need to determine the caller, and if it is tableview's highlight method, we should return no subviews at all.
We can create a simple UIView subclass and override subviews like below.
- (NSArray *)subviews{
NSString* backtrace = [NSString stringWithFormat: @"%@",[NSThread callStackSymbols]];
if ([backtrace rangeOfString:@"_updateHighlightColorsForView"].location!=NSNotFound)
return [super subviews];
return [[NSArray new] autorelease];
}
I have a class which inherits from UITableViewCell
, so i fixed it overriding setSelected:animated
like this:
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
//Reset highlighted status to all the childs that i care for.
[self.someChild setHighlighted:NO];
[self.someOtherChild setHighlighted:NO];
}
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