0

我希望NSFetchRequestUITableViewController可以根据特定属性对类似记录(实体)进行分组。我目前做了一个两步过程,但我相信可能有某种方式可以使用+ (NSExpression *)expressionForAggregate:(NSArray *)collection.

有人可以帮助提供适当的代码吗?

这是我的两步过程的代码,它返回一个数组的数组:

+(NSArray *)getTopQforDogByProgram2:(Dog *)dog
                     inProgram:(RunProgramTypes)programType
              inManagedContext:(NSManagedObjectContext *)context {
    NSString *searchString;

    NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Run"];
    request.predicate = [NSPredicate predicateWithFormat:[NSString stringWithFormat:@"dog.callName = '%@'",dog.callName]];
    NSSortDescriptor *classSortDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"runClass" ascending:NO];
    request.sortDescriptors = [NSArray arrayWithObject:classSortDescriptor];

    NSError *error = nil;
    NSArray *dataArray = [context executeFetchRequest:request error:&error];

    NSMutableArray *returnArray = [[NSMutableArray alloc] init];
    if ( [dataArray count] > 0 ) {
        NSMutableArray *pointArray = [[NSMutableArray alloc] init];
        for ( Run *run in dataArray ) {
            if ( ! [returnArray count] ) {
                [pointArray addObject:run];
                [returnArray addObject:pointArray];
            } else {
                BOOL wasSame = FALSE;
                for ( NSMutableArray *cmpArray in returnArray ) {
                    Run *cmpRun = [cmpArray lastObject];
                    if ( cmpRun.runClass   == run.runClass ) {
                        [cmpArray addObject:run];
                        wasSame = TRUE;
                        break;
                    }
                }
                if ( ! wasSame ) {
                    pointArray = [[NSMutableArray alloc] init];
                    [pointArray addObject:run];
                    [returnArray addObject:pointArray];

                }
            }
        }
    }
    return returnArray;
}
4

1 回答 1

0

您可以使用 fetch results 控制器为您进行切片,如下所示:

NSFetchedResultsController* controller = [[NSFetchedResultsController alloc] initWithFetchRequest:request
                                                                         managedObjectContext:context
                                                                           sectionNameKeyPath:@"runClass"
                                                                                    cacheName:nil];
NSMutableArray* sections = [[NSMutableArray alloc] initWithCapacity:[controller sections] count];
for (id<NSFetchedResultsSectionInfo> section in [controller sections]) {
    NSMutableArray* sectionCopy = [NSMutableArray arrayWithArray:[section objects]];
    [sections addObject:sectionCopy];
}

或者自己做:(假设结果按 排序runClass

NSMutableArray* sections = [NSMutableArray new];
NSMutableArray* currentSection = [NSMutableArray new];
for (Run* run in dataArray) {
    Run* lastObject = (Run*)[currentSection lastObject];
    if (lastObject && (run.runClass == lastObject.runClass)) {
        currentSection = [NSMutableArray new];
        [sections addObject:currentSection];
    }
    [currentSection addObject:run];
}
于 2013-04-09T18:14:42.607 回答