美文网首页
iOS tableview自定义cell选中颜色,点击闪的问题

iOS tableview自定义cell选中颜色,点击闪的问题

作者: 咋了爸爸 | 来源:发表于2017-06-26 14:26 被阅读122次

    改变tableview选择cell的背景颜色, 的时候突然遇到一个问题, 我是将背景改成白色,发现在点击某个cell的时候,会出现点击A行,下面的B行也会跟着闪一下,后来去掉点击动画发现,是好像发生了图层的覆盖

    开始的代码

    cell.selectedBackgroundView = [[UIView alloc] initWithFrame:cell.frame] ;
        cell.selectedBackgroundView.backgroundColor = [UIColor whiteColor];
    
    

    后来白frame 改成bounds

    cell.selectedBackgroundView = [[UIView alloc] initWithFrame:cell.bounds] ;
        cell.selectedBackgroundView.backgroundColor = [UIColor whiteColor];
    
    

    问题解决了, 这个现象可能是偶尔发生, 不知道怎么描述, 反正改成bounds就好了

    相关文章

      网友评论

          本文标题:iOS tableview自定义cell选中颜色,点击闪的问题

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