我创建了一个带有可点击部分的 UITableview。当你点击它们时,
- 它们“扩展”以显示其中的细胞
- 单击的部分滚动到视图的顶部。
我计算所有索引路径以插入/删除必要的单元格,然后使用以下代码插入它们:
[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:pathsToOpen withRowAnimation:insertAnimation];
[self.tableView deleteRowsAtIndexPaths:pathsToClose withRowAnimation:deleteAnimation];
[self.tableView endUpdates];
[self.tableView scrollToRowAtIndexPath:[pathsToOpen objectAtIndex:0] atScrollPosition:UITableViewScrollPositionTop animated:YES];
只有一个问题 - 所选部分下方的部分是隐藏的。第一个屏幕截图显示了 tableview 的外观。第二个屏幕截图显示了它的实际外观。
如果您向上滚动(因此隐藏部分在屏幕外)然后向下滚动,隐藏部分将被带回(再次可见)。我对为什么会发生这种情况的猜测如下:
插入/删除动画与 TableView 同时发生scrollToRowAtIndexPath
,这使 TableView 感到困惑。如果我没有完成scrollToRowAtIndexPath
第 3 节和第 4 节,就会出现在屏幕外——所以 tableView 仍然以某种方式认为它们在屏幕外。UITableview 隐藏了屏幕外的单元格/部分作为优化。如果我用 2 秒调用scrollToRowAtIndexPath
a ,则第 3 和第 4 部分将正确显示。dispatch_after
所以我想我知道为什么会这样,但我不知道如何修复/覆盖这个 UITableview 优化。实际上,如果我scrollViewDidEndScrollingAnimation
在此函数中实现然后添加断点,应用程序会正确显示第 3 和第 4 部分(这就是我获得第一个屏幕截图的方式)。但是一旦继续这个功能,细胞就会消失。
完整的项目可以在这里下载
附加实现细节:部分是合法的 UITableView 部分。我添加了一个触发对 tableview 的委托回调的 tapGestureRecognizer。下面包括打开这些部分的整个方法。
- (void)sectionHeaderView:(SectionHeaderView *)sectionHeaderView sectionOpened:(NSInteger)sectionOpened
{
// Open
sectionHeaderView.numRows = DefaultNumRows;
sectionHeaderView.selected = YES;
NSMutableArray *pathsToOpen = [[NSMutableArray alloc] init];
for (int i = 0; i < sectionHeaderView.numRows; i++)
{
NSIndexPath *pathToOpen = [NSIndexPath indexPathForRow:i inSection:sectionOpened];
[pathsToOpen addObject:pathToOpen];
}
// Close
NSMutableArray *pathsToClose = [[NSMutableArray alloc] init];
if (openSectionHeader)
{
for (int i = 0; i < openSectionHeader.numRows; i++)
{
NSIndexPath *pathToClose = [NSIndexPath indexPathForRow:i inSection:openSectionHeader.section];
[pathsToClose addObject:pathToClose];
}
}
// Set Correct Animation if section's already open
UITableViewRowAnimation insertAnimation = UITableViewRowAnimationBottom;
UITableViewRowAnimation deleteAnimation = UITableViewRowAnimationTop;
if (!openSectionHeader || sectionOpened < openSectionHeader.section)
{
insertAnimation = UITableViewRowAnimationTop;
deleteAnimation = UITableViewRowAnimationBottom;
}
openSectionHeader.numRows = 0;
openSectionHeader.selected = NO;
openSectionHeader = sectionHeaderView;
[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:pathsToOpen withRowAnimation:insertAnimation];
[self.tableView deleteRowsAtIndexPaths:pathsToClose withRowAnimation:deleteAnimation];
[self.tableView endUpdates];
[self.tableView scrollToRowAtIndexPath:[pathsToOpen objectAtIndex:0] atScrollPosition:UITableViewScrollPositionTop animated:YES];
}