我的表格视图中有 56 个部分,我将当前选择的部分编号存储在一个名为“activeTimeSlot”的整数变量中。如何使用以下方法重新加载当前选择的部分。我正在这样做
[self.tblView reloadSections:[NSIndexSet indexSetWithIndex:activeTimeSlot] withRowAnimation:UITableViewRowAnimationAutomatic];
但我观察到这样做是为所有部分调用 tableview 的以下数据源方法,即重新加载所有部分。
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
我不确定如何使用 NSIndexSet 以及如何使用 NSIndexSet 重新加载超过 1 个部分。