使用nsfetchedresultscontroller设置分区表头

时间:2013-04-11 05:43:20

标签: ios ipad nsfetchedresultscontroller

我在我的项目中使用NSFetchedResultsController以及核心数据。我能够从数据库中获取所有对象。我在分段表视图中显示它们。我想将每个部分中的总行数显示为节表视图的标题。我没有得到任何帮助。我已经尝试了很多,但不知道如何设置它。任何形式的帮助都是值得的。

1 个答案:

答案 0 :(得分:1)

以下内容应该有效:

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {

    NSInteger numberOfRows = [[[self.frc sections] objectAtIndex:section] numberOfObjects];

    UITableViewHeaderFooterView *sectionHeaderView = [[UITableViewHeaderFooterView alloc] init];
    sectionHeaderView.textLabel.text = [NSString stringWithFormat:@"Total objects %d", numberOfRows];

    return sectionHeaderView;
}

诀窍是从NSFetchedResultsController中获取正确的部分并在其上调用numberOfObjects方法。 NSFetchedResultsController中的部分是符合NSFetchedResultsSectionInfo委托的代理对象。