移动行后,我更改了与单元格关联的biz的lineandPin编号。如果再次调用cellForRowAtIndexpath,那么事情将会起作用。
这是我的代码
- (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];
}
moveRowAtIndexPath
[tableView moveRowAtIndexPath...
似乎没有做任何事情。无论我是否呼叫,都会移动行。cellForRowAtindexpath
,仍然没有调用self.table reloadData
。答案 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];
}
另外一些评论:
cellForRowAtIndexPath
。它永远不会被称为可见细胞。moveRowAtIndexpath
是合适的。您的情况与此相反,即UI正在将更改传播到您的数据模型。所以你不会打电话给moveRowAtIndexPath
。willDisplayCell
中重新配置单元格,因为在某些情况下,表格视图会在cellForRowAtIndexPath
之后覆盖您的自定义设置。