gpt4 book ai didi

iphone - 核心数据: Get Objects with the highest value in each category

转载 作者:行者123 更新时间:2023-11-29 05:02:19 24 4
gpt4 key购买 nike

我目前正在努力实现核心数据,以获得“每个类别中最好的”效果 - 我已经尝试找出解决方案很长时间了,但我只是找不到正确的方法< .<

我有 NSManagedObjects 的三个子类,出于解释原因,我们将它们称为“Person”、“Child”和“School”。每个 Person 可以有多个子实体,因此这些实体之间存在一对多关系:人<--->> child

一个 child 上一所学校,一所学校有很多 child ,所以我们有: child <<--->学校

通过这个数据结构,我想获得一个具有以下条件的 child 列表:

  1. 列表中的 child 必须符合特定要求(例如年龄、就读特定学校……)(使用 NSPredicate 即可轻松完成)
  2. 该列表按 child 的成绩排序(或任何您喜欢的内容,只是一个属性)
  3. 仅考虑符合要求(1.)的每位家长成绩最好的 child !

我尝试了很多,但找不到可行的方法...困难的部分是过滤 parent 的 child 列表,以获取每个 parent 评分最高的 child ,必须做什么应用(1.)的要求后

最好将其包装到 NSFetchedResultsController 中,以便可以通过 UITableView 轻松显示列表。

但是最好的方法是什么?这可以通过匹配谓词来完成吗?我非常感谢您的帮助!

:)

编辑:问题是通过以下解决方案解决的(当涉及性能时,这并不是最优的,但它完成了它的工作=)我将实体名称替换为上面解释中使用的实体名称。 )

亲自.m:

- (NSArray *)bestChildrenWithPredicate:(NSPredicate *)aPredicate {    // create request

NSFetchRequest *request = [[NSFetchRequest alloc] init];
[request setEntity:[NSEntityDescription entityForName:@"Child" inManagedObjectContext:moc]];
// set predicate to fetch only children of current person and those that fit in the given predicate (possible to get back children of multiple schools)
NSPredicate *thePredicate = [NSPredicate predicateWithFormat:@"parent == %@",self];
if (aPredicate) thePredicate = [NSCompoundPredicate andPredicateWithSubpredicates:[NSArray arrayWithObjects:thePredicate, aPredicate, nil]];
[request setPredicate:thePredicate];
// sort results for grade and execute request
[request setSortDescriptors:[NSArray arrayWithObject:[NSSortDescriptor sortDescriptorWithKey:@"grade" ascending:YES]]];
NSError *error = nil;
NSArray *sortedResultsForPredicate = [moc executeFetchRequest:request error:&error];
[request release];
if (!sortedResultsForPredicate) {
// handle error
abort();
}
// create dictionary with schools as keys
NSMutableDictionary *bestResults = [[[NSMutableDictionary alloc] init] autorelease];
// loop through all results
for (Child *aResult in sortedResultsForPredicate) {
// get string for dictionary index
NSString *theSchoolKey = aResult.school.key;
// check if the school already exists in the dictionary
if (![bestResults objectForKey:theSchoolKey]) {
[bestResults setObject:aResult forKey:theSchoolKey];
} else {
// get the current result
Result *preResult = [bestResults objectForKey:theSchoolKey;
// compare the results by grade and replace if new one is better
NSComparisonResult comp = [preResult compareByGrade:aResult];
if (comp==NSOrderedDescending||(comp==NSOrderedSame&&[[aResult valueForKey:@"date] compare:[preResult valueForKey:@"date"]]==NSOrderedAscending)) {
[bestResults setObject:aResult forKey:theSchoolKey];
}
}
}
// return best graded children of each school sorted by date
return [[bestResults allValues] sortedArrayUsingSelector:@selector(compareByDate:)];

}

最佳答案

如果您将 parent 保留在单独的实体中,并且在子实体中具有关系,那么您应该能够迭代父级列表,仅提取该父级的子级,将结果读入排序数组,然后使用 [myArray lastResult] 弹出最后一个值;然后,您可以将此对象添加到可以在应用程序中访问的可变数组中。我还没有时间将其放入代码中,但基础知识是:

Fetch the parents entity into an array
Iterate the parents array, using the parent as the constraint for the child entity, and use NSSortDescriptor initWithKey:@"grade" (or whatever you call it) ascending:YES.
Read the results into a resultsArray
id bestKid = [resultsArray lastObject];
[myNSMutableArray addObject:bestKid];

对每个父对象执行此操作,然后 myNSMutableArray 将包含最佳子记录的数组。

现在,我对直接SQL比Core Data更熟悉,所以如果这个解决方案不可行,欢迎指正! :)

关于iphone - 核心数据: Get Objects with the highest value in each category,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6615092/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com