1

コアデータからデータを取得するテーブルがあります。スタティック セルが 1 つだけ存在するセクションを追加しました。しかし、エラーが発生し、その理由がわかりません。

* キャッチされていない例外 'NSRangeException' が原因でアプリを終了しています。理由: '* -[__NSArrayM objectAtIndex:]: 境界を超えたインデックス 1 [0 .. 0]'

questo è il codice

- (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;
}
4

1 に答える 1

0

2 つの tableView データソース メソッドに一貫性がありません。

ではnumberOfRowsInSection、取得した結果コントローラの の合計数を返しますfetchedObjects

ではcellForRow...、フェッチされた結果コントローラのobjectAtIndexPathメソッドを使用しています。

ドキュメントに従って、セクション情報オブジェクトを取得し、そこから行数を取得する必要があります。

- (NSInteger)tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section {
    id <NSFetchedResultsSectionInfo> sectionInfo = [[<#Fetched results controller#> sections] objectAtIndex:section];
    return [sectionInfo numberOfObjects];
}
于 2012-10-07T16:59:27.770 に答える