zoukankan      html  css  js  c++  java
  • 解决设置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;
        
     
    }

  • 相关阅读:
    【实战】如何实现滚轮时间的显示
    NSDate的常用用法
    UIDatePicker的简单用法
    NSDateFormatter相关整理
    UIPickerView
    回家任务
    addTarget:self 的意思是说,这个方法在本类中
    2020/2/25
    树上启发式合并
    题解
  • 原文地址:https://www.cnblogs.com/Rong-Shengcom/p/7222253.html
Copyright © 2011-2022 走看看