这是因为您应该有一种动态的方式来返回行数。
例如,我创建了 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,因此表格将“知道”它必须仅显示 2 行。基本上,您还需要更新数据源。它也适用于其他部分。因为您从数组中删除元素,所以行数也将被更新。