我有一个自定义的UITableViewCell,它根据它所在的行来改变颜色:
TableViewController.m
- (void)willDisplayCell:(GSRSongCell *)cell atIndexPath:(NSIndexPath *)indexPath;
{
if (indexPath.row % 2 == 0) {
[cell lighten];
} else {
[cell darken];
}
}
CustomTableViewCell.m
- (void)lighten
{
self.selectedBackgroundView.backgroundColor = [UIColor whiteColor];
self.contentView.backgroundColor = [UIColor whiteColor];
self.primaryLabel.backgroundColor = [UIColor whiteColor];
self.secondaryLabel.backgroundColor = [UIColor whiteColor];
}
- (void)darken
{
UIColor *darkColor = [UIColor colorWithR:241 G:241 B:241 A:1];
self.selectedBackgroundView.backgroundColor = darkColor;
self.contentView.backgroundColor = darkColor;
self.primaryLabel.backgroundColor = darkColor;
self.secondaryLabel.backgroundColor = darkColor;
}
但是,当我调用deselectRowAtIndexPath:animated:YES
时,动画会在selectedBackgroundColor
应该更暗的单元格中淡化为白色。
然后我意识到取消选择动画与selectedBackgroundColor
无关;实际上,取消选择动画实际上是基于tableView.backgroundColor
属性!
如何覆盖取消选择动画以淡入我的单元格的背景颜色?
答案 0 :(得分:9)
它实际上会动画回到单元格背景颜色,因此您也必须设置它
在lighten方法中添加此行
self.backgroundColor = [UIColor whiteColor];
这是暗化方法
self.backgroundColor = darkColor;
答案 1 :(得分:4)
只需在UIBuilder或代码中将单元格选择设置为UITableViewCellSelectionStyleNone:
cell.selectionStyle = UITableViewCellSelectionStyleNone;