我认为处理这个问题的最好方法是在其他人提到的数据模型中,但如果你真的需要这样做,你可以执行以下操作:
根据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 行时才有效。
希望这可以帮助。