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

    MessageTableViewCell* cell = (MessageTableViewCell*)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil)
        cell = [[MessageTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];

    Message* message = [self.dataModel.messages objectAtIndex:indexPath.row];


        [cell setMessage:message];

    return cell;

}

我正在开发一个聊天应用程序,其中在发送和接收同时发生的消息时出现异常。以下是异常消息

-[UITableView _endCellAnimationsWithContext:], /SourceCache/UIKit/UIKit-2380.17/UITableView.m:1070 2013-04-30 16:55:14.314 [2689:907] 中的断言失败由于未捕获的异常“NSInternalInconsistencyException”而终止应用程序,原因:“无效更新:第 0 节中的行数无效*。

更新后现有节中包含的行数 (19) 必须等于更新前该节中包含的行数 (17),加上或减去从该节中插入或删除的行数 (1 插入, 0 已删除)并加上或减去移入或移出该部分的行数(0 移入,0 移出)。

- (int)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section
{
    return [self.dataModel.messages count];
}

    - (void)didSaveMsg:(NSMutableArray *)array1
    {
        self.dataModel.messages = array1;

        [tableview insertRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:array1.count-1 inSection:0]] withRowAnimation:UITableViewRowAnimationFade];

        [self scrollToNewestMessage];
    }



- (void)scrollToNewestMessage
{

    dispatch_after(DISPATCH_TIME_NOW, dispatch_get_main_queue(), ^(void){
    NSIndexPath* indexPath = [NSIndexPath indexPathForRow:(self.dataModel.messages.count - 1) inSection:0];

    [tableview scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:YES];
    });

    [tableview reloadData];
    [[DBModel database]updateMessageCount1:mobileNo cnt:@"0"];


}
4

1 回答 1

0

错误消息是相当不言自明的——您告诉表格视图您要插入一个单元格,但是在表格的数据源中然后说它有两个额外的单元格要显示(19 个而不是 17 个)。

几乎可以肯定,问题不在您发布的代码中,而在numberOfRows您的数据源的方法中,或者在您插入额外单元格的代码中。

于 2013-05-15T09:52:44.480 回答