iOS 自定义UITableViewCell的高亮背景色

2021-01-13  本文已影响0人  缘來諟夢
-(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];
}
上一篇下一篇

猜你喜欢

热点阅读