自定制Cell选中时,Cell上Button背景色消失的问题

情景:前几日写代码的时候遇到一个问题,当cell被选中的时候,cell上按钮的背景色消失,跟cell选中的背景色重合了。

解决方案是:
在自定制Cell的.m文件里增添一下的方法。

-(void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated
{
    [super setHighlighted:highlighted animated:animated];
    //设置cell高亮状态下,button的背景色
    [self.typeButton setBackgroundColor:btnColor];
}

如上,即完美的解决了button背景色消失的问题。

你可能感兴趣的:(自定制Cell选中时,Cell上Button背景色消失的问题)