核心数据 - NSFetchedResultController 按其他表字段排序数据

Core Data - NSFetchedResultController Sort data by other tables field

我有两个 tables -- master 和 details -- 彼此相关(一个 Master - 许多细节)

我想显示来自 Details table 的记录列表,按 Master table 中的 "date" 字段排序。

如何在以下代码中操作 NSSortDescriptor?或者对我的问题还有其他建议吗?

代码:

NSFetchRequest *fr = [[NSFetchRequest alloc] init];
NSEntityDescription *e = [NSEntityDescription entityForName:@"Details"
                                     inManagedObjectContext:context];
[fr setEntity:e];

NSSortDescriptor *sd = [[NSSortDescriptor alloc]
                                       initWithKey:@"date" // ---- PROBLEM
                                         ascending:YES];

NSArray *arrSD = [[NSArray alloc] initWithObjects:sd, nil];
[fetchRequest setSortDescriptors:sortDescriptors];

self.frc = [[NSFetchedResultsController alloc]
                         initWithFetchRequest:fr
                         managedObjectContext:context
                           sectionNameKeyPath:nil
                                    cacheName:nil];

NSError *err;
[self.frc performFetch:&err];

现在,我希望使用 "date" - 字段对数据进行排序,该字段是 Master table.

的列名

首先你需要设置master和detail之间的关系tables。

然后你将能够在你的分类描述中使用其他table filed in your sort description in the next way ..你的关系名称不能是一个集合(在一个主人 - 许多细节关系中你将能够仅在为详细信息创建排序描述符时使用此类字段 table)

您的排序说明将如下所示:

NSSortDescriptor *sd = [[NSSortDescriptor alloc]
                                       initWithKey:@"master.date"
                                         ascending:YES];

我认为您遗漏了对 Master in Details 的引用 table 即

@interface Details : NSManagedObject

@property (nonatomic, retain) NSString * x;
@property (nonatomic, retain) NSString * y;
@property (nonatomic, retain) Master *master;

@end

这会将每个细节连接到一个且唯一的主控。所以现在您实际上可以获取按日期排序的详细信息:

NSFetchRequest *fr = [[NSFetchRequest alloc] init];
NSEntityDescription *e = [NSEntityDescription entityForName:@"Details"
                                     inManagedObjectContext:context];
[fr setEntity:e];

NSSortDescriptor *sd = [[NSSortDescriptor alloc]
                                       initWithKey:@ "master.date"
                                         ascending:YES];

尽情享受吧。