-(void)drawRect:(CGRect)rect
{
if (self.highlighted) {
self.contentView.backgroundColor = [UIColor groupTableViewBackgroundColor];
}else{
self.contentView.backgroundColor = [UIColor whiteColor];
}
}
- (void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated
{
[super setHighlighted:highlighted animated:animated];
[self setNeedsDisplay];
}
网友评论