如何在MagicalRecord中使用groupBy?

时间:2013-09-05 03:55:25

标签: core-data nsfetchedresultscontroller magicalrecord

我坚持如何将groupBy与MagicalRecord一起使用。

我有一个有场地的国家/地区列表

Country -<< Venues

我需要按国家对所有场地进行分组,并按名称对国家进行排序。

但我不知道如何用MagicalRecord做到这一点。

我曾尝试使用NSFetchedController但有时崩溃说数组为零或0长。

其他时候,只有多个时才能看到1个类别。

最后,我不确定如何在实体上执行提取。

即;

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.
    _objects = [NSMutableArray array];

    self.fetchedResultsController = [self fetchedResultsController];
    [Venue performFetch:self.fetchedResultsController];

// At this point how do I make the Venue findAllSortedBy work on the performFetch?
        _objects = [NSMutableArray arrayWithArray:[Venue findAllSortedBy:@"name" ascending:YES inContext:[NSManagedObjectContext defaultContext]]];

        self.title = @"Venues";

    }


    - (NSFetchedResultsController *)fetchedResultsController {
        if (!fetchedResultsController) {
            fetchedResultsController = [Venue fetchAllSortedBy:@"name"
                                                            ascending:YES
                                                        withPredicate:nil
                                                              groupBy:@"country"
                                                             delegate:self];
        }

        return fetchedResultsController;
    }

-(NSString*)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section   {
    NSLog(@"Section = %d", section);

    id <NSFetchedResultsSectionInfo> sectionInfo = [[self.fetchedResultsController sections] objectAtIndex:section];
    NSLog(@"sectionInfo = %@", sectionInfo);

    return @"Header";
}

- (UITableViewCell *)tableView:(UITableView *)tv cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tv dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
    }

    [self configureCell:cell atIndexPath:indexPath];

    return cell;
}

- (void)configureCell:(UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath {
    Venue *v = [_objects objectAtIndex:indexPath.row];
    cell.textLabel.text = v.name;
}

我不确定我是否正确行事。

以上将把所有内容放在1个国家/地区(当有多个时)并且日志将报告;

  

CoreData:error:(NSFetchedResultsController)一节返回了section的nil值   命名关键路径'country'。对象将放在未命名的部分

似乎没有看到不同的国家,我认为我没有正确完成GroupBy命令。

因此,如何使用MagicalRecord执行GroupBy命令?

非常感谢。

2 个答案:

答案 0 :(得分:2)

self.fetchedVenues = [Venue MR_fetchAllGroupedBy:@"country" withPredicate:nil sortedBy:@"name" ascending:YES];

答案 1 :(得分:1)

此错误告诉您所有Venue对象中,结果集中至少有一个没有“country”值。您需要确认您确实填写了此字段并在提取之前正确保存。

而且,在您的viewDidLoad方法中,您不需要所有代码。只需执行以下操作:

- (void) viewDidLoad;
{
    [super viewDidLoad];
    self.fetchedVenues = [Venue fetchAllSortedBy:@"name" ascending:YES withPredicate:nil groupBy:@"country" delegate:self];
}

fetchAllSortedBy ...将为您执行提取,并记录错误等。这是像MagicalRecord这样的辅助框架。