美文网首页
自定制Cell选中时,Cell上Button背景色消失的问题

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

作者: 爱打码滴小燕子 | 来源:发表于2017-10-30 14:51 被阅读26次

    情景:前几日写代码的时候遇到一个问题,当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背景色消失的问题

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