gpt4 book ai didi

iphone - 核心数据 : The fetched object at index x has an out of order section name 'xxxxxx. 对象必须按节名排序

转载 作者:IT王子 更新时间:2023-10-29 08:06:05 24 4
gpt4 key购买 nike

我知道我不是第一个问这个问题的人,但我真的很困惑..

基本上我有一个带有两个按钮的屏幕。每个按钮根据日期将数据加载到下面的表格 View 中。在第一个 tableview 的第一次加载时(默认情况下选择左按钮),一切都显示正常。如果我点击右键,我得到一个空白的表格 View ,我得到错误

The fetched object at index x has an out of order section name 'xxxxxx. Objects must be sorted by section name.

切换回左 TableView ,数据没了。两个 TableView 都是空的。

根据项目的开始时间,每个表格 View 都有 2 个部分。如果我删除部分数据显示正常。不幸的是,我需要它们。数据分为两部分,如下所示:

@interface NSString(agendaSessionKeyPath)
@property (nonatomic, readonly) NSString *sessionSection;
@end

@implementation NSString(agendaSessionKeyPath)

- (NSString *)sessionSection
{
int timeValue = [[self stringByReplacingOccurrencesOfString:@":" withString:@""] intValue]; //turns 11:00 to 1100
if (timeValue < 1200)
return @"Morning";
else
return @"Afternoon";
}

获取请求

- (void)viewDidLoad
{
//other viewDidLoad stuff
[self fetchSessions];
}

根据日期对左右按钮的数据进行排序的方法:

- (void)fetchSessions
{
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0]];
[dateFormatter setDateFormat:@"yyyy-MM-dd"];

NSDate* date = nil;
if (selected == 0) //left button is selected
{
date = [dateFormatter dateFromString:@"2012-09-26"];
}
else if (selected == 1) //right button is selected
{
date = [dateFormatter dateFromString:@"2012-09-27"];
}

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"date == %@", date];
[self.fetchedResultsController.fetchRequest setPredicate:predicate];

NSError *error;
if (![[self fetchedResultsController] performFetch:&error]) {
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
}
}

获取结果 Controller

- (NSFetchedResultsController *)fetchedResultsController {
self.managedObjectContext = [[MATCDatabaseController sharedDatabaseController] managedObjectContext];
if (_fetchedResultsController != nil) {
return _fetchedResultsController;
}

NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] initWithEntityName:@"Session"];

NSSortDescriptor *sort = [[NSSortDescriptor alloc]
initWithKey:@"title" ascending:YES];
NSSortDescriptor *timeSort = [NSSortDescriptor sortDescriptorWithKey:@"timeValue" ascending:YES];
[fetchRequest setSortDescriptors:@[timeSort, sort]];
[fetchRequest setFetchBatchSize:20];

NSFetchedResultsController *theFetchedResultsController =
[[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest
managedObjectContext:self.managedObjectContext sectionNameKeyPath:@"startTime.sessionSection"
cacheName:nil];

self.fetchedResultsController = theFetchedResultsController;
[self.fetchedResultsController setDelegate:self];

return _fetchedResultsController;

}

感谢任何帮助!

最佳答案

好的,我确实快速浏览了一下。

您使用以下方法初始化 FRC:

[[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest
managedObjectContext:self.managedObjectContext
sectionNameKeyPath:@"startTime.sessionSection"
cacheName:nil];

告诉它您的章节标题将通过关键路径 startTime.sessionSection 获取。

现在,提供给 FRC 的获取请求的第一个排序描述符将用于对这些部分进行排序。您首先提供的排序描述符是针对 timeValue 的,这似乎不正确。

您的第一个排序描述符应该为您的章节标题指定一个排序。改变它,你就可以开始了。

编辑

Thanks guys for the info. I'm still a bit lost though. Did you mean that I should add a sort descriptor on startTime.sessionSection before assigning it to the sectionNameKeyPath? I tried, but still no luck. timeValue and startTime.sessionSection are related. Could that be it? – pigeonfactory

您必须确保第一个排序描述符将根据部分正确排序您的数据。在您的情况下,时间正在转换为文字。您的初始排序描述符是时间,当数据根据时间排序时,这些部分没有正确排序,这导致了您的错误。

第一个排序描述符必须满足部分数据。所以,最初,我会尝试...

[fetchRequest setSortDescriptors:@[
[NSSortDescriptor sortDescriptorWithKey:@"startTime.sessionSection"
ascending:NO],
[NSSortDescriptor sortDescriptorWithKey:@"timeValue"
ascending:YES],
[NSSortDescriptor sortDescriptorWithKey:@"title"
ascending:YES] ];

请注意,如果您有大量数据,您可能会发现您的部分机制变慢了。如果发生这种情况,您可能希望将此部分数据添加到您的数据库中。

关于iphone - 核心数据 : The fetched object at index x has an out of order section name 'xxxxxx. 对象必须按节名排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12150101/

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