访问NSFetchedResultsController中的子实体关系/属性

时间:2010-06-18 13:51:09

标签: iphone core-data

我正在尝试从我的一个实体中的managedobject关系访问一个属性,但我不断从它获得一个“nil”对象。以下是实体及其关系的摘要。

实体:众议院 关系:地址(1对1)

实体:Adresse 属性:街道(NSString) 关系:房子(1比1)

所以基本上“House”只能有一个“Adresse”。当我拿到房子时,我希望能够通过地址关系对街道房产进行排序。这是我正在使用的代码,但似乎无法使其成功。我错过了什么?

- (NSFetchedResultsController *)fetchedResultsController {
    // Set up the fetched results controller if needed.
    if (fetchedResultsController == nil) {

        MyAppDelegate *appDelegate = [[UIApplication sharedApplication] delegate]; 
        NSManagedObjectContext *managedObjectContext = [appDelegate managedObjectContext]; 

        // Create the fetch request for the entity.
        NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
        // Edit the entity name as appropriate.
        NSEntityDescription *entity = [NSEntityDescription entityForName:@"House" inManagedObjectContext:managedObjectContext];
        [fetchRequest setEntity:entity];

        // Edit the sort key as appropriate.
        NSString *sectionKey = @"adresse.rue";
        NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:sectionKey ascending:YES];
        NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor, nil];

        [fetchRequest setSortDescriptors:sortDescriptors];
        [fetchRequest setFetchBatchSize:20];

        // Edit the section name key path and cache name if appropriate.
        // nil for section name key path means "no sections".
        NSFetchedResultsController *aFetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:managedObjectContext sectionNameKeyPath:sectionKey cacheName:@"House"];
        aFetchedResultsController.delegate = self;
        self.fetchedResultsController = aFetchedResultsController;

        [aFetchedResultsController release];
        [fetchRequest release];
        [sortDescriptor release];
        [sortDescriptors release];
    }

    return fetchedResultsController;
}    

1 个答案:

答案 0 :(得分:1)

您的代码看起来不错。您的提取请求有效。如果它没有抛出任何异常,那么正确指定了您的密钥路径。

我不太确定“从中获取nil对象”是什么意思。如果您的意思是获取的结果控制器不包含任何对象,请确保在尝试访问任何对象之前调用performFetch:。在您执行此操作之前,控制器将为空。

当您省略排序描述符和键路径时,此代码是否有效?