16

也可以看看

使用 FetchedResultsController 按日期对核心数据进行排序

有没有办法按日期对 CoreData 实体中的对象进行分组,并使用它们在 UITableView 控件上创建多个部分?

本质上,我需要类似于以下伪 SQL 的东西,其中 my_group_criteria() 按天对所有测试进行分组:

SELECT * FROM tests GROUP BY my_group_criteria(date)

例如,查询会将以下行分为 3 个单独的部分:

[test1 | 2013-03-18 15.30.22]
[test2 | 2013-03-18 14.30.22]
[test3 | 2013-03-18 13.30.22]

[test4 | 2013-03-17 18.30.22]
[test5 | 2013-03-17 19.30.22]

[test6 | 2013-03-15 20.30.22]

正如2中已经回答的那样, NSPredicate 不适用于对实体进行分组,因此这可能不是要走的路。

鉴于此,如何根据类似于 SQL GROUP BY 的某些标准在 UITableView 中创建多个部分?

如果可能的话,我想避免直接访问 SQL-lite 数据库。

相关问题1: NSPredicate:按NSDate属性的日期过滤对象

相关问题 2: NSPredicate 相当于 SQL 的 GROUP BY

4

2 回答 2

14

您可以根据需要修改 Apple Developer Library 中的DateSectionTitles示例项目。

首先,您必须修改瞬态sectionIdentifier属性的访问器函数以创建基于年+月+日(而不是仅年+月)的节标识符:

- (NSString *)sectionIdentifier {

    // Create and cache the section identifier on demand.

    [self willAccessValueForKey:@"sectionIdentifier"];
    NSString *tmp = [self primitiveSectionIdentifier];
    [self didAccessValueForKey:@"sectionIdentifier"];

    if (!tmp) {
        /*
         Sections are organized by month and year. Create the section identifier
         as a string representing the number (year * 10000 + month * 100 + day);
         this way they will be correctly ordered chronologically regardless of
         the actual name of the month.
         */
        NSCalendar *calendar = [NSCalendar currentCalendar];

        NSDateComponents *components = [calendar components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit)
                               fromDate:[self timeStamp]];
        tmp = [NSString stringWithFormat:@"%d", [components year] * 10000 + [components month] * 100  + [components day]];
        [self setPrimitiveSectionIdentifier:tmp];
    }
    return tmp;
}

其次,titleForHeaderInSection必须更改委托方法,但思路相同:从节标识符中提取年、月和日,并从中创建标题标题字符串:

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {

    id <NSFetchedResultsSectionInfo> theSection = [[fetchedResultsController sections] objectAtIndex:section];

    NSInteger numericSection = [[theSection name] integerValue];
    NSInteger year = numericSection / 10000;
    NSInteger month = (numericSection / 100) % 100;
    NSInteger day = numericSection % 100;

    // Create header title YYYY-MM-DD (as an example):
    NSString *titleString = [NSString stringWithFormat:@"%d-%d-%d", year, month, day];
    return titleString;
}
于 2013-02-19T12:36:49.413 回答
0

假设这个想法是将对象数组分组到对象数组中,我将采取的方法是,首先找到日期的可能值(或任何您想要分组的值),然后实际对其进行排序。

NSArray *values = ...;
NSArray *sorting = [values valueForKey:@"@distinctUnionOfObject.propertyToGroupBy"];
NSUInteger sectionCount = [sorting count];
NSMutableArray *sections = [NSMutableArray arrayWithCapacity:sectionCount];
for (int i = 0; i < sectionCount; i++)
    [sections addObject:[NSMutableArray array]];

[values enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
    // Figure out the section for this object
    NSUInteger section = [sorting indexOfObject:obj.propertyToGroupBy];
    [[sections objectAtIndex:section] addObject:obj];
}];

// sections will contain as many sections as there were unique values
// each of those values is an array containing values that matched the criteria

这可能会被优化,但在我看来,这似乎符合要求。

编辑:再次通过问题后,propertyToGroupBy 必须规范化该值,即删除日期的时间分量,因为分组是由唯一值完成的(即比较基于 isEqual:)

于 2013-02-18T18:35:32.873 回答