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

Posted

技术标签:

【中文标题】核心数据 - NSFetchedResultController 按其他表字段排序数据【英文标题】:Core Data - NSFetchedResultController Sort data by other tables field 【发布时间】:2015-01-02 07:03:32 【问题描述】:

我有两张表 - 主表和详细信息 - 彼此相关(一个主表 - 许多详细信息)

我想显示Details 表中的记录列表,按Master 表中的“日期”字段排序。

我如何在以下代码中操纵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];

现在,我希望使用“日期”字段对数据进行排序,该字段是Master 表的列名。

【问题讨论】:

【参考方案1】:

首先你需要设置主表和明细表之间的关系。

然后您将能够以下一种方式使用排序描述中的其他表字段..您的关系名称不能是一个集合(在一个主 - 多细节关系中,只有当您为详细信息表创建排序描述符)

您的排序描述将如下所示:

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

【讨论】:

【参考方案2】:

我认为您在详细信息表中缺少对 Master 的引用 即

@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];

享受吧。

【讨论】:

以上是关于核心数据 - NSFetchedResultController 按其他表字段排序数据的主要内容,如果未能解决你的问题,请参考以下文章

使用 MKMapView、核心位置和核心数据

大数据三大核心技术:拿数据、算数据、卖数据!

核心数据道模式

通过迁移将核心数据实体及其数据移动到新的核心数据模型文件中

核心数据与用于核心数据的单个 MOC 和主线程合并冲突

核心数据——数据故障