5

我想使用 iOS 5 漂亮的行移动调用来为 tableview 设置动画以匹配一些模型状态更改,而不是旧式的删除和插入。

更改可能包括重新排序和就地更新,我想为两者设置动画,所以有些行需要reloadRowsAtIndexPaths.

但!UITableView如果更新的单元格由于移动而移动位置,则在存在移动的情况下处理行重新加载似乎是完全错误的。以一种等效的方式使用较旧的 delete+insert 调用可以正常工作。

这是一些代码;我为冗长道歉,但它确实可以编译和运行。肉在doMoves:方法。下面进行说明。

#define THISWORKS

@implementation ScrambledList // extends UITableViewController
{
  NSMutableArray *model;
}

- (void)viewDidLoad
{
  [super viewDidLoad];
  model = [NSMutableArray arrayWithObjects:
           @"zero",
           @"one",
           @"two",
           @"three",
           @"four",
           nil];
  [self.navigationItem setRightBarButtonItem:[[UIBarButtonItem alloc] initWithTitle:
#ifdef THISWORKS
                                              @"\U0001F603"
#else
                                              @"\U0001F4A9"
#endif
                                                                              style:UIBarButtonItemStylePlain
                                                                             target:self
                                                                             action:@selector(doMoves:)]];
}

-(IBAction)doMoves:(id)sender
{
  int fromrow = 4, torow = 0, changedrow = 2; // 2 = its "before" position, just like the docs say.

  // some model changes happen...
  [model replaceObjectAtIndex:changedrow
                   withObject:[[model objectAtIndex:changedrow] stringByAppendingString:@"\u2032"]];  
  id tmp = [model objectAtIndex:fromrow];
  [model removeObjectAtIndex:fromrow];
  [model insertObject:tmp atIndex:torow];

  // then we tell the table view what they were
  [self.tableView beginUpdates];
  [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:changedrow inSection:0]]
                        withRowAnimation:UITableViewRowAnimationRight]; // again, index for the "before" state; the tableview should figure out it really wants row 3 when the time comes
#ifdef THISWORKS
  [self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:fromrow inSection:0]]
                        withRowAnimation:UITableViewRowAnimationAutomatic];
  [self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:torow inSection:0]]
                        withRowAnimation:UITableViewRowAnimationAutomatic];
#else // but this doesn't
  [self.tableView moveRowAtIndexPath:[NSIndexPath indexPathForRow:fromrow inSection:0]
                         toIndexPath:[NSIndexPath indexPathForRow:torow inSection:0]];
#endif
  [self.tableView endUpdates];
}

#pragma mark - Table view data source boilerplate, not very interesting

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
  return model.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@""];
  if (cell == nil)
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@""];
  [cell.textLabel setText:[[model objectAtIndex:indexPath.row] description]];
  [cell.detailTextLabel setText:[NSString stringWithFormat:@"this cell was provided for row %d", indexPath.row]];
  return cell;
}

代码的作用:建立一个微型模型(小型可变数组);当按下按钮时,它会对列表的中间元素进行微小的更改,并将最后一个元素移动到第一个元素。然后它更新表视图以反映这些更改:重新加载中间行,删除最后一行并插入一个新行零。

这行得通。事实上,添加日志记录cellForRowAtIndexPath表明,虽然我要求重新加载第 2 行,但表视图正确地要求第 3 行,因为在实际进行更新时插入。嘘!

现在注释掉顶部的#ifdef 以改用 moveRowAtIndexPath 调用。

现在,tableview删除了第 2 行,请求新的第2行(错误!),并将其插入到最后的第 2 行位置(也是错误的!)。最终结果是第 1 行向下移动了两个插槽而不是一个,并且将其滚动到屏幕外以强制重新加载显示它是如何与模型不同步的。我可以理解是否moveRowAtIndexPath以不同的顺序更改了 tableview 的私有模型,需要在重新加载或模型获取中使用“新”而不是“旧”索引路径,但这不是正在发生的事情。请注意,在第二张“之后”图片中,第三行和第四行的顺序相反,无论我重新加载哪个单元格,都不应该发生这种情况。

状态之前

一键按下后,删除插入样式

一键按下后,移动式

我诅咒苹果的词汇变得丰富多彩。我应该诅咒自己吗?行移动是否与同一更新块中的行重新加载完全不兼容(以及,我怀疑,插入和删除)?在我提交错误报告之前,任何人都可以启发我吗?

4

1 回答 1

3

我刚刚花了一些时间玩你的代码,我同意;看起来它只是行不通。

这整个领域的文档有点不足,但他们实际上并没有说您可以moveRowAtIndexPath:toIndexPath:与重新加载方法混合使用。它确实说它可以与行插入和行删除方法混合使用。如果我修改您的代码以执行这些代码,这些似乎可行。因此,您可能要求增强,而不是提交错误。不管怎样,我肯定会把它发送到雷达上。

于 2012-07-07T17:40:53.077 回答