当用户点击一个单元格时,我想更新我的UITableView
; 包括这个被点击的单元格的内容。最简单的方法是更新内部参数,然后调用[self.tableView reloadData];
.
但是,reloadData
立即停止我点击的单元格的漂亮蓝色-> 无选择动画。
是否有(标准)方法来更新我的表格单元格而不停止点击单元格的动画?
请注意,在这种情况下,我不添加或删除单元格;我只想更改内容(例如启动活动指示器,或更改标签的颜色。)
当用户点击一个单元格时,我想更新我的UITableView
; 包括这个被点击的单元格的内容。最简单的方法是更新内部参数,然后调用[self.tableView reloadData];
.
但是,reloadData
立即停止我点击的单元格的漂亮蓝色-> 无选择动画。
是否有(标准)方法来更新我的表格单元格而不停止点击单元格的动画?
请注意,在这种情况下,我不添加或删除单元格;我只想更改内容(例如启动活动指示器,或更改标签的颜色。)
在您的情况下,您可以获取指向所有可见单元格的指针并更新它们。像这样的东西:
- (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...
}
因此,您的单元格将始终显示正确的内容。
关于创建内容:
- (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;
}
或者,也许您可以简单地延迟重新加载表数据,如下所述:Delay reloadData on UITableView