1

我对 iOS 编程很陌生,我正在尝试制作这个预算应用程序。我想将我的预算类的实例类添加到我的表格视图中。但是当我点击完成按钮时,就会出现这个错误。我一直在论坛上搜索我的问题的答案。

到目前为止,我发现 Aby 和我有同样的问题(http://stackoverflow.com/questions/11706254/nsinternalinconsistencyexception-reason-attempt-to-insert-row-0-into-section?answertab=active#tab -top)但我无法在那篇文章中得到明确的答案/解决方案。

我确定我知道为什么会发生此错误,但是我不知道如何解决它:-(任何可以帮助我解决此问题的人?

我想发布一些我的代码图片,但由于垃圾邮件保护,stackoverflow 不允许我。

AddBugdetViewController.m

(IBAction)done
{
    [self.presentingViewController dismissViewControllerAnimated:YES completion:nil];

    Budget *budget = [[Budget alloc] init];
    budget.name = self.textField.text;
    budget.amount = [Budget convertStringToNSNumber:self.textField.text];

    [self.delegate addBudgetViewController:self didFinishAddingItem:budget];
}

预算视图控制器.m

(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [self.budget.items count];
}

(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Budgets"];

    Budget *item = [self.budget.items objectAtIndex:indexPath.row];

    [self configureTextForCell:cell withChecklistItem:item];

    return cell;
}

- (void)addBudgetViewController:(AddBudgetViewController *)controller didFinishAddingItem:(Budget *)NewBudget
{
    NSLog(@"Adding budget: %@", NewBudget.name);
    NSLog(@"Budget amount: %@", NewBudget.amount);

    [self.tableView beginUpdates];

    int newRowIndex = [self.budget.items count];
    [self.budget.items addObject:NewBudget];

    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:newRowIndex inSection:0];
    NSArray *indexPaths = [NSArray arrayWithObject:indexPath];
    [self.tableView insertRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationAutomatic];

    [self.tableView endUpdates];

    [self dismissViewControllerAnimated:YES completion:nil];
}

如果您需要更多信息来追踪问题并解决它,请告诉我:-)

干杯安德斯

4

1 回答 1

1

您的 BudgetViewController 似乎定义了一个名为“预算”的属性。无论创建和显示 BudgetViewController 的代码都应该将该属性设置为应该在视图控制器中显示的任何预算对象。

于 2012-10-11T20:00:27.523 回答