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

效果预览

iOS UITableViewCell选中时,子视图背景颜色受影响问题_第1张图片
效果图

实现

在该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选中时,子视图背景颜色受影响问题)