在我的应用程序中,我有一个 tableView,当它被选中时我更改了单元格的背景颜色,我将代码编写为
- (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
cell.backgroundColor = [UIColor whiteColor];
}
问题是当我滚动tableView时,单元格的背景颜色被禁用,白色不可见意味着背景颜色效果被移除。表格视图在滚动时重用了单元格,因此删除了单元格背景效果。我知道问题出在哪里,但我不知道如何处理这个问题并将所选单元格的背景颜色保持为白色,即使表格视图滚动也是如此。请告诉我这个问题的解决方案。