我在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;
}