美文网首页
UITableViewCell 上添加有背景颜色按钮,如果点击c

UITableViewCell 上添加有背景颜色按钮,如果点击c

作者: 低调的前行者灬 | 来源:发表于2017-11-24 17:08 被阅读0次

    解决办法:
    在cell的layoutSubviews中重新设置颜色即可,如下:

    -(void)layoutSubviews
    {
       [super layoutSubviews];
       
       self.rightMsgNumBtn.backgroundColor = MainColor;
       self.payButton.backgroundColor = MainColor;
    }
    

    相关文章

      网友评论

          本文标题:UITableViewCell 上添加有背景颜色按钮,如果点击c

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