我正在尝试使用以下代码删除。
[super deleteRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationFade];
它返回多个例外。
*** Assertion failure in -[UITableView _endCellAnimationsWithContext:], /SourceCache/UIKit_Sim/UIKit-2372/UITableView.m:1070
2013-01-29 16:28:22.628
由于未捕获的异常而终止应用 'NSInternalInconsistencyException',原因:'无效更新:无效 第1节中的行数。包含在中的行数 更新后的现有部分(5)必须等于数量 更新前的该部分中包含的行(5),加号或减号 从该部分插入或删除的行数(插入0, 5删除)并加上或减去移入或移出的行数 该部分(0移入,0移出)。'
答案 0 :(得分:2)
这是因为你应该有一种动态的方式来返回行数。
例如,我创建了一个3个数组。每个都有3个值(这些是NSArray
变量):
在.h
档案中:
NSArray *firstArray;
NSArray *secondArray;
NSArray *thirdArray;
在.m
文件,viewDidLoad或init或类似内容中:
firstArray = [NSArray arrayWithObjects:@"Cat", @"Mouse", @"Dog", nil];
secondArray = [NSArray arrayWithObjects:@"Plane", @"Car", @"Truck", nil];
thirdArray = [NSArray arrayWithObjects:@"Bread", @"Peanuts", @"Ham", nil];
当返回表格中的行数时,我有:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return array.count;
if (section == 0) {
return firstArray.count;
} else if (section == 1) {
return secondArray.count;
} else {
return thirdArray.count;
}
}
然后,在cellForRow
:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
}
if (indexPath.section == 0) {
cell.textLabel.text = [firstArray objectAtIndex:indexPath.row];
} else if (indexPath.section == 1) {
cell.textLabel.text = [secondArray objectAtIndex:indexPath.row];
} else {
cell.textLabel.text = [thirdArray objectAtIndex:indexPath.row];
}
return cell;
}
然后我通过在表格上滑动或您想要删除的其他方式删除@"Dog"
。然后,当重新加载表时,您的数组计数将为2,因此表格将会#34;知道"它必须只显示2行。基本上,您还需要更新数据源。
它也适用于其他部分。因为从数组中删除元素,所以行数也会更新。