将索引添加到Core Data表视图[iPhone,表视图]

时间:2011-10-23 16:29:47

标签: iphone ios uitableview core-data

我有一个表视图,根据月份和年份分组。为此,我在NSFetchedResultsController中创建了一个transient属性和一个相应的排序描述符,它帮助我根据月份和年份进行分组。表视图工作正常,并按照我的意愿显示部分(使用titleForHeaderInSection)。

我想在表格视图中添加一个索引,我目前在这里停滞不前。我相信这样做的唯一方法是:

- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView

那我怎么给它一个包含所有部分名称的数组呢?

P.S。:这是我的第一篇文章。

1 个答案:

答案 0 :(得分:0)

这就是我的所作所为:

- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
NSInteger lastSectionIndex = [self.tableView numberOfSections] - 1;
if (lastSectionIndex == -1) {
    return nil;
}
NSMutableArray *sectionNames = [[NSMutableArray alloc] init];
NSString *sectionName = nil;
for (int i = 0; i <= lastSectionIndex; i++) {
    sectionName = [[[self.fetchedResultsController sections] objectAtIndex:i] name];
    [sectionNames addObject:sectionName];
}
return sectionNames;

}