改变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就好了