美文网首页
iOS 自定义UITableViewCell的高亮背景色

iOS 自定义UITableViewCell的高亮背景色

作者: 缘來諟夢 | 来源:发表于2021-01-13 14:38 被阅读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];
    }
    

    相关文章

      网友评论

          本文标题:iOS 自定义UITableViewCell的高亮背景色

          本文链接:https://www.haomeiwen.com/subject/oqiuaktx.html