我有一张表从核心数据中获取数据。我添加了一个部分,其中必须只有一个静态单元格。但我得到一个错误,我无法弄清楚原因。
*由于未捕获的异常'NSRangeException'而终止应用程序,原因:'* - [__ NSArrayM objectAtIndex:]:索引1超出边界[0 .. 0]'
questoèilccodice
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[self setupFetchedResultsController];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 2;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
if (section == 0) {
return [[self.fetchedResultsController fetchedObjects] count];
} else if (section == 1) {
return 1;
}
return 0;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Category Cell";
CategoryCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[CategoryCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Configure the cell...
if (indexPath.section == 0) {
NSLog(@"section %i",indexPath.section);
Category *category = [self.fetchedResultsController objectAtIndexPath:indexPath];
cell.categoryNameLabel.text = category.name;
cell.categoryNumberItemsLabel.text = [NSString stringWithFormat:@"%i",category.containItem.count];
} else {
//Static cell
}
return cell;
}
答案 0 :(得分:0)
您的两个tableView数据源方法不一致。
在numberOfRowsInSection
中,您返回获取结果控制器fetchedObjects
的总计数。
在cellForRow...
中,您使用的是获取结果控制器的objectAtIndexPath
方法。
您应该获取section info对象并从那里获取行计数,根据文档:
- (NSInteger)tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section {
id <NSFetchedResultsSectionInfo> sectionInfo = [[<#Fetched results controller#> sections] objectAtIndex:section];
return [sectionInfo numberOfObjects];
}