3

有人可以解释我在尝试插入新的 UITableViewCell 时做错了什么吗?我正在尝试插入自定义 UITableViewCell,但它会引发以下错误:'无效更新:第 0 节中的行数无效。更新 (1) 后现有节中包含的行数必须等于数字更新前该节中包含的行数 (1),加上或减去从该节插入或删除的行数(1 插入,0 删除),加上或减去移入或移出该节的行数(0搬进来,0搬出去)。

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
if (section == 0)
    return 1;
else if (section == 1)
    return numberOfRows;
return 1;
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"EditableCell";

EditableCell *editableCell = (EditableCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (editableCell == nil) {

    editableCell = [[EditableCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}

_myTextField = [editableCell textFieldCell];

if (indexPath.section == 0){
    [_myTextField setPlaceholder:@"Menu Name"];
    [_myTextField setReturnKeyType:UIReturnKeyNext];
}
else if (indexPath.section == 1){
    [_myTextField setPlaceholder:@"Category"];
    [_myTextField setReturnKeyType:UIReturnKeyNext];
}
else {
    [_myTextField setPlaceholder:@"Category"];
    [_myTextField setReturnKeyType:UIReturnKeyDone];
}

_myTextField.keyboardType = UIKeyboardTypeDefault;
_myTextField.delegate = self;

return editableCell;
}

-(BOOL)textFieldShouldReturn:(UITextField *)textField{

if (textField.returnKeyType == UIReturnKeyNext) {

    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:1];
    NSArray *array = [[NSArray alloc] initWithObjects:indexPath, nil];

    [self.tableView insertRowsAtIndexPaths:array withRowAnimation:UITableViewRowAnimationTop];

    numberOfRows = numberOfRows + 1;

    [self.tableView reloadData];
    }     
}
4

2 回答 2

7

您需要确保在下面的方法中返回的行数现在返回正确的行数。

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

我确信发生的事情是您在插入后在这里返回相同的值,而运行时期望它比您调用插入行之前的值多一个。

更详细地说,在 MVC 术语(模型/视图/控制器)中发生的事情是这样的:

  1. 您的调用insertRowsAtIndexPaths是请求控制器用额外的行更新视图。
  2. 控制器然后进行健全性检查以查看您的总和是否正确,因此它调用: tableView:numberOfRowsInSection

    现在控制器知道该方法上次返回的值(在您的情况下为 1),并且它还知道您已请求插入一行。没有删除调用,因此它预计下次调用此方法时,值应该是(上次的值 + 插入的行 - 删除的行)= 2

  3. 如果控制器认为您的事情井井有条,它将调用cellForRowAtIndexPath(连同其他方法)以获取每个部分中每一行的实际单元格。

因此,对于您的问题,您需要跟踪模型中的行 - 可能在数组或具有可用行数的 ivar 中。在调用之前,通过在添加/删除行时更新此值来更新模型,insertRowsAtIndexPath然后在调用时返回此值tableView:numberOfRowsInSection

附加提示:

如果您希望您的单元格插入/删除动画,请将您的代码更改为以下内容。请注意,不再调用reloadData,而是将插入/重新加载包装在开始/结束更新调用中 - 由于调用,动画更新将在之后endUpdates发生reloadSections

NSMutableIndexSet *sectionsToReload = [[NSMutableIndexSet alloc] init];
[sectionsToReload addIndex:1]; // Add sections as necessary

[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:array withRowAnimation:UITableViewRowAnimationTop];
[self.tableView reloadSections:sectionsToReload withRowAnimation:UITableViewRowAnimationNone];
[self.tableView endUpdates];

查看来自 Apple 的 WWDC 2010 视频“Mastering Table Views” - 很好地解释了一切,关于使用insertRowsAtIndexPaths和相关方法。

HTH,拉伸

于 2012-06-21T00:31:53.903 回答
0

尝试插入新单元格后,您的数据源必须包含原始单元格的数量 (1) 加上您要插入的“额外”单元格 (1),总共 2 个。所以您tableView:numberOfRowsInSection:必须返回 2。

错误信息表明tableView:numberOfRowsInSection:返回 1。

更新您的数据源,使其返回此“额外”单元格。

于 2012-06-21T00:29:42.133 回答