如何在取消选择时阻止自定义UITableViewCells闪烁白色?

时间:2012-06-04 13:44:36

标签: objective-c ios cocoa-touch uikit core-animation

我有一个自定义的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属性!

如何覆盖取消选择动画以淡入我的单元格的背景颜色?

2 个答案:

答案 0 :(得分:9)

它实际上会动画回到单元格背景颜色,因此您也必须设置它

在lighten方法中添加此行

self.backgroundColor = [UIColor whiteColor];

这是暗化方法

self.backgroundColor = darkColor;

答案 1 :(得分:4)

只需在UIBuilder或代码中将单元格选择设置为UITableViewCellSelectionStyleNone:

cell.selectionStyle = UITableViewCellSelectionStyleNone;