检索关系核心数据中的值
Posted
技术标签:
【中文标题】检索关系核心数据中的值【英文标题】:retrieving values in relationship coredata 【发布时间】:2012-06-11 14:23:19 【问题描述】:我一直在制作一个使用核心数据的程序。它有两个实体,医学和日志 药品有一套日志
我让它在第一次添加药物时为其添加日志。该日志包含一个日期。 我想显示药物的最新日期(可能有多个日志),但不知道如何检索适当的日志。我发现的教程只显示了如何添加而不是检索。
这是我目前所拥有的,它显示了药物名称。我想更改 detailtextlabel 以显示最新日志条目的日期
- (void)configureCell:(UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath
NSManagedObject *object = [self.fetchedResultsController objectAtIndexPath:indexPath];
NSLog(@"%@",object);
cell.textLabel.text = [object valueForKey:@"name"];
cell.detailTextLabel.text = [[object valueForKey:@"active"] stringValue];
- (NSFetchedResultsController *)fetchedResultsController
if (__fetchedResultsController != nil)
return __fetchedResultsController;
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
// Edit the entity name as appropriate.
NSEntityDescription *medicines = [NSEntityDescription entityForName:@"Medicines" inManagedObjectContext:self.managedObjectContext];
[fetchRequest setEntity:medicines];
// Set the batch size to a suitable number.
[fetchRequest setFetchBatchSize:20];
// Edit the sort key as appropriate.
NSSortDescriptor *sortDescriptor1 = [[NSSortDescriptor alloc] initWithKey:@"active" ascending:NO];
NSSortDescriptor *sortDescriptor2 = [[NSSortDescriptor alloc] initWithKey:@"name" ascending:NO];
NSArray *sortDescriptors = [NSArray arrayWithObjects:sortDescriptor1, sortDescriptor2, nil];
[fetchRequest setSortDescriptors:sortDescriptors];
// 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:self.managedObjectContext sectionNameKeyPath:nil cacheName:@"Master"];
aFetchedResultsController.delegate = self;
self.fetchedResultsController = aFetchedResultsController;
NSError *error = nil;
if (![self.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;
【问题讨论】:
您能否提供一些有关您的 fetchedResultsController 的详细信息? 目前只能吃药。我已经阅读了一些页面说我还需要以相同的方式获取第二个表,而其他页面只是说我可以使用 nsset 日志来获取 【参考方案1】:你提供的设置细节很少,所以很难给你一个详细的答案。
让我们告诉你有类似的东西:
Medicine:
- name: string
- logs: ->> Log
Log:
- medicine: -> Medicine
- date: NSDate
在某些时候,您有一个 NSFetchRequest。它应该是这样的:
NSFetchRequest* fetchRequest = [NSFetchRequest fetchRequestWithEntityName: @"Log"];
fetchRequest.predicate = [NSPredicate predicateWithFormat: ...
现在魔术开始了。
fetchRequest.sortDescriptors = @[
[NSSortDescriptor sortDescriptorWithKey: @"date" ascending: NO]
];
结果集中的第一个条目将是最新的。 'fetchedLogs'.firstObject.date 将返回最近的日志条目日期。
正如我所说,由于您的问题不是很详细,因此我无法给您更量身定制的答案。
edit:哦,你在我写这篇文章的时候添加了一些细节。好吧,我不知道药物和日志条目之间的关系如何。可能与我上面提出的接近。所以你只需要:
[medicine.logs valueForKeyPath: @"@max.date"];
这将返回日志集中的最高日期。
编辑:哎呀,我的错,valueForKeyPath,不只是 valueForKey。
【讨论】:
这几乎就是我的设置。目前唯一重要的字段是:医学:名称 - 字符串日志 - nsset 我应该添加@max.date 是获得所需内容的最简单方法,但肯定不是最快的。如果 Log.date 存在索引,则定制的 NSFetchRequest 会快得多。 The Medicine 有一个 nsset of Log " 属性 (nonatomic, retain) NSSet *log; " Log has a Medicine " 属性 (nonatomic, retain) Medicines *medicine; " 好的,我想我得到这个是因为我没有检索到任何日志(或者至少这是互联网搜索告诉我的)我在尝试打印出“对象”的详细信息时得到它2012-06-11 17:29:12.379 Medicine Tracker[10766:fb03] 托管对象 (0x6d33990)以上是关于检索关系核心数据中的值的主要内容,如果未能解决你的问题,请参考以下文章