我正在使用UITableView
带有静态单元格的应用程序的设置视图。
此表的一个部分包含两个单元格,第二个部分仅在UISwitch
第一个部分中包含的 a 打开时可见。
所以UISwitch
的目标是这样的:
- (void)notificationSwitchChanged:(id)sender
{
UISwitch* switch = (UISwitch*)sender;
self.bNotify = switch.on;
[self.settingsTable reloadSections:[NSIndexSet indexSetWithIndex:1] withRowAnimation:UITableViewRowAnimationTop];
}
我是numberOfRowsInSection:
这样实现的:
(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section
{
if (section != 1)
return [super tableView:tableView numberOfRowsInSection:section];
if (self.bNotify)
return 2;
return 1;
}
这个“有效”,但是动画有问题,使第一个单元格消失或在上一部分的一半下方向上滑动,或者根据我选择的动画类型进行各种调整。最干净的是UITableViewRowAnimationNone
,但仍然不完美。
如果我将该部分滚动出视图并返回,它看起来又正常了。
编辑:对问题进行了一些截图:
我尝试在之前和之后添加beginUpdates
和,但它没有改变任何东西。使用而不是作品,但根本没有动画。endUpdates
reloadSections
reloadData
reloadSections
是因为表格的单元格是静态的还是我遗漏了什么?