0

我有一个控件可以部分或完全更改 tableView 的内容。更改发生后,我设置了一个标志tableViewContentHasChanged

BOOL tableViewContentHasChanged = YES;
[self.tableView reloadData];
tableViewContentHasChanged = NO;

我的问题出现在tableView:viewForHeaderInSection:;它在重新加载表视图调用,因此我的标志在该方法中无效。

简而言之:当表完全重新加载时观察的正确方法是什么,所以我可以将标志设置为NO?而且,我可能做错了什么?

4

1 回答 1

2

我认为处理这个问题的最好方法是在其他人提到的数据模型中,但如果你真的需要这样做,你可以执行以下操作:

根据Apple 的文档,当您调用时,只会重新加载可见的部分/单元格reloadData

所以你需要知道最后一个可见的标题是什么时候渲染的,所以你设置:

  tableViewContentHasChanged = YES;
  [self.tableView reloadData];

然后在 cellForRowAtIndexPath: 中获取最后显示的索引并将其存储在成员变量中:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  //Your cell creating code here
  UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"TryCell"];

  //Set last displayed index here
  lastLoadedSectionIndex = indexPath.section;
  NSLog(@"Loaded cell at %@",indexPath);
  return cell;
}

这样,当viewForHeaderInSection:被调用时,您将知道哪个是该重新加载事件中的最后一个标头:

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
  //Create or customize your view
  UIView *headerView = [UIView new];

  //Toggle tableViewContentHasChanged when it's the last index
  if (tableViewContentHasChanged && section == lastLoadedSectionIndex) {
    tableViewContentHasChanged = NO;
    NSLog(@"Reload Ended");

  }
  return headerView;
}

请注意,此方法仅在最后一个可见部分至少有 1 行时才有效。

希望这可以帮助。

于 2013-04-21T14:21:16.473 回答