美文网首页
iOS UITableViewCell选中时,子视图背景颜色受影

iOS UITableViewCell选中时,子视图背景颜色受影

作者: 觉醒的苍红之刃 | 来源:发表于2017-05-09 23:39 被阅读38次

    效果预览

    效果图

    实现

    在该cell的layoutSubviews方法中再次设置对应子视图的背景颜色

    实现代码

    • Swift3.0代码
    override func layoutSubviews() {
      super.layoutSubviews();
      unreadLabel?.backgroundColor = UIColor.hx_color(withHexRGBAString: "#FF5B45");
    }
    
    • OC代码
    - (void)layoutSubviews {
        [super layoutSubviews];
        _unreadLabel.backgroundColor = [UIColor hx_colorWithHexRGBAString:@"#FF5B45"];
    }

    相关文章

      网友评论

          本文标题:iOS UITableViewCell选中时,子视图背景颜色受影

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