1

我的核心数据是这样定义的:用户有很多事件;事件具有单一的用户关系;

用户和事件都是核心数据实体。用户实体通过情节提要 segue 传入。

我正在尝试配置 NSPredicate 以仅使用该特定用户的事件填充该用户的详细 UITableView。

到目前为止我已经尝试过

//does not work
 NSPredicate* onlyThisUserPredicate = [NSPredicate predicateWithFormat:@"user == %@",self.appUser];

//does not work
 NSPredicate* onlyThisUserPredicate = [NSPredicate predicateWithFormat:@"SELF.user == %@",self.appUser];

比较事件并仅返回用户对象等于指定用户对象的事件的正确语法是什么?

更新:

我正在尝试使用这种获取的结果控制器向用户添加事件:

-(NSFetchedResultsController*)fetchedResultsController
{
    if (__fetchedResultsController != nil) {
        return __fetchedResultsController;
    }

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

    // Set the batch size to a suitable number.
    [fetchRequest setFetchBatchSize:20];

//I need to configure this user
    NSPredicate* onlyThisUserPredicate = [NSPredicate predicateWithFormat:@"user = %@",self.appUser];


    // The first sort key must match the section name key path key if present, otherwise the initial dataset would be messed up: rows in incorrect sections

    NSString* firstSortKey = @"createDate";
    NSSortDescriptor *firstSortDescriptor = [[NSSortDescriptor alloc] initWithKey:firstSortKey ascending:YES];
    NSArray *sortDescriptors = [NSArray arrayWithObjects:firstSortDescriptor, nil];

    [fetchRequest setSortDescriptors:sortDescriptors];
    [fetchRequest setPredicate:onlyThisUserPredicate];

    // 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:[Event managedObjectContext] sectionNameKeyPath:nil cacheName:@"Events"];
    self.fetchedResultsController = aFetchedResultsController;
    aFetchedResultsController.delegate = self;

    //    [aFetchedResultsController release];
    [sortDescriptors release];
    [fetchRequest release];

    NSError *error = nil;
    if (![__fetchedResultsController performFetch:&error]) {
        /*
         Replace this implementation with code to handle the error appropriately.

         abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development. 
         */
        NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
        //      abort();
    }


    return __fetchedResultsController;
}

谢谢!

4

3 回答 3

1

那么这个谓词对于用户实体是否正确?如果是这样,您是否尝试过:

NSPredicate* onlyThisUserPredicate = [NSPredicate predicateWithFormat:@"SELF == %@",self.appUser];

然后您可以通过以下方式访问您的活动:

[self.appUser events];
于 2012-04-27T18:28:47.017 回答
1

好的,我能想到的有几件事可能会导致这种行为。

首先,您是否在此函数中验证了 self.appUser 的值?它设置为您的期望吗?

其次,您是否确保您的标头都是最新的并包含在此文件中?有时,当我的标头未与 coredata 模型保持同步时,我会遇到奇怪的行为。

于 2012-04-27T18:56:49.233 回答
0

如果您已经从 Core Data 存储中检索了“用户”,那么您应该能够通过遵循该关系来访问其事件——无需执行单独的获取请求:

NSSet *events = self.appUser.events;

另一方面,如果self.appUser不是托管对象,那么==在谓词中使用运算符可能是问题所在。所以让我假设这self.appUser只是一个包含用户名的字符串,而不是数据存储中的用户对象。然后你会在你的谓词中使用'like'运算符:

NSPredicate* onlyThisUserPredicate = [NSPredicate predicateWithFormat:@"user like %@",self.appUser];

此外,请确保您在获取请求中指定了正确的实体。对于您所描述的内容,您应该使用事件实体的实体描述进行提取。

于 2012-04-27T18:21:38.757 回答