TableView + CoreData:添加和刷新

时间:2016-04-20 02:58:04

标签: ios objective-c json core-data

我在iOS应用程序中使用coredata的每个人:我的问题是它只添加了我需要的元素,然后它拒绝添加任何其他元素。 并告诉我总是这个错误:

  

原因:'* - [__ NSArrayM objectAtIndex:]:索引3超出界限[0 .. 2] **

如何让表格视图自行更新并始终显示最后的结果。 任何人都可以查看这段代码

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 1;
}

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

    //return 3;
    return _affichdata1.count;
}

- (UITableViewCell*)tableView:(UITableView *)tableView    cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

    UITableViewCell* mycell=[tableView    dequeueReusableCellWithIdentifier:@"CellH" forIndexPath:indexPath];

    Planificateur1 *p1=[_affichdata1 objectAtIndex:indexPath.row];
    mycell.textLabel.text = p1.heuredep[indexPath.row];

    return mycell;
}

0 个答案:

没有答案