如何在不停止单元格选择动画的情况下重新加载UITableView

时间:2013-08-24 12:16:03

标签: ios objective-c cocoa-touch uitableview

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

然而,reloadData会立即停止我的tapped cell的蓝色>无选择动画。

是否有(标准)方法更新我的表格单元格而不停止抽头单元格的动画?

注意在这种情况下我不添加或删除单元格;我只想更改内容(例如,启动活动指示器,或更改标签的颜色。)

2 个答案:

答案 0 :(得分:1)

在您的情况下,您可以获取指向所有可见单元格的指针并更新它们。像这样:

- (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;
}

答案 1 :(得分:0)

或许您可以简单地延迟重新加载表格数据,例如:Delay reloadData on UITableView