解决设置selectedBackgroundView后会把cell上带背景颜色的控件遮住的问题

Posted #零下一度&

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决设置selectedBackgroundView后会把cell上带背景颜色的控件遮住的问题相关的知识,希望对你有一定的参考价值。

再给cell自定义选中的背景色时,当选中后会把cell上原来有背景色的控件遮住就像消失了一样,可以用下面的方法解决

我定义的cell的选中背景色是绿色

    UIView *bgView = [[UIView alloc]initWithFrame:programCell.bg_View.bounds];
    bgView.backgroundColor = [UIColor greenColor];
    
    Cell.selectedBackgroundView = bgView;

 

未选中的效果

 

 

选中时的效果

用下面的方法设置以后

//在cell文件中实现下面的两个方法
//在下面的两个方法中分别设置Label的背景色
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];
    // Configure the view for the selected state
    
    _deadline_Label.backgroundColor = GrayBGColor;
    
}

-(void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated
{
    [super setHighlighted:highlighted animated:animated];
   
    _deadline_Label.backgroundColor = GrayBGColor;
    
 
}

 

以上是关于解决设置selectedBackgroundView后会把cell上带背景颜色的控件遮住的问题的主要内容,如果未能解决你的问题,请参考以下文章

VS2008:为整个解决方案定义相同的代码分析设置?

Swagger 设置解决混合内容错误

怎么解决解决浏览器不兼容问题

未将对象引用设置到对象的实例怎么解决啊?

当我不想使用堆栈设置背景图像时,是不是有任何解决方案可以将背景图像设置为脚手架?

nginx跨域设置无效的解决办法 Nginx跨域设置Access-Control-Allow-Origin无效的解决办法