如何在移动行后再次调用cellForRowAtIndexPath?

时间:2013-01-19 18:40:15

标签: swift uitableview

移动行后,我更改了与单元格关联的biz的lineandPin编号。如果再次调用cellForRowAtIndexpath,那么事情将会起作用。

enter image description here

这是我的代码

- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath
{
    NSMutableArray *  mutableBusinessBookmarked= self.businessesBookmarked.mutableCopy;
    Business *bizToMove = mutableBusinessBookmarked[sourceIndexPath.row];
    [mutableBusinessBookmarked removeObjectAtIndex:sourceIndexPath.row];
    [mutableBusinessBookmarked insertObject:bizToMove atIndex:destinationIndexPath.row];
    self.businessesBookmarked=mutableBusinessBookmarked;
    [self rearrangePin];
    [tableView moveRowAtIndexPath:sourceIndexPath toIndexPath:destinationIndexPath];
    [self.table reloadData];
}
  1. 我不确定我做得对。我更新了数据模型并致电moveRowAtIndexPath
  2. [tableView moveRowAtIndexPath...似乎没有做任何事情。无论我是否呼叫,都会移动行。
  3. 我不认为调用self.table reloadData是明智的。但是,我想更新左边的数字。尽管调用了cellForRowAtindexpath,仍然没有调用self.table reloadData

1 个答案:

答案 0 :(得分:3)

我建议将您的单元配置逻辑移动到单独的方法中。然后在moveRowAtIndexPath中,您可以通过直接调用此方法来更新可见单元格。例如:

- (void)configureCell:(UITableViewCell *)cell
{
    NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
    // Get data for index path and use it to update cell's configuration.
}

- (void)reconfigureVisibleCells
{
    for (UITableViewCell *cell in self.tableView.visibleCells) {
        [self configureCell:cell];
    }
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyCellIdentifier"];
    [self configureCell:cell];
    return cell;
}

- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath
{
    // Update data model. Don't call moveRowAtIndexPath.
    [self reconfigureVisibleCells];
}

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    [self configureCell:cell];
}

另外一些评论:

    仅当表视图需要显示新单元格时才会调用
  1. cellForRowAtIndexPath。它永远不会被称为可见细胞。
  2. 当您的数据模型发生更改并且需要将该更改传播到UI时,调用moveRowAtIndexpath是合适的。您的情况与此相反,即UI正在将更改传播到您的数据模型。所以你不会打电话给moveRowAtIndexPath
  3. 我总是在willDisplayCell中重新配置单元格,因为在某些情况下,表格视图会在cellForRowAtIndexPath之后覆盖您的自定义设置。