如何重新加载UITableView而不停止单元格selectanimation

当用户点击一个单元格时,我想更新我的UITableView ; 包括这个敲击的单元格的内容。 最简单的方法是更新内部参数,然后调用[self.tableView reloadData];

但是, reloadData立即停止我的抽头单元格的漂亮的蓝色 – >无selectanimation。

有没有(标准)的方式来更新我的表格单元格,而不停止点击单元格的animation?

注意在这种情况下,我不添加或删除单元格; 我只是想改变内容(例如开始一个活动指标,或者改变标签的颜色)。

在你的情况下,你可以得到指向所有可见单元格的指针并更新它们。 像这样的东西:

 - (void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath { NSArray* visibleCells = [tableView indexPathsForVisibleRows]; for (NSIndexPath* indexPath in visibleCells) { UITableViewCell* cell = [self.tableView cellForRowAtIndexPath:indexPath]; [self updateCell:cell atIndexPath:indexPath]; // Your method, which updates content... } } 

如果你想更新其他单元格的内容,你可以使用这样的东西:

 - (void)tableView:(UITableView*)tableView willDisplayCell:(UITableViewCell*)cell forRowAtIndexPath:(NSIndexPath*)indexPath { [self updateCell:cell atIndexPath:indexPath]; // Your method, which updates content... } 

所以你的单元格会一直显示正确的内容。

关于创build内容:

 - (UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString* CellIdentifier = @"Cell"; UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]; [self createContentForCell:cell atIndexPath:indexPath]; // so here to create content or customize cell } return cell; } 

或者,也许你可以简单地延迟表格数据的重新加载,例如在这里描述: 延迟reloadData在UITableView