- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我几乎尝试了所有方法,但无法弄清楚哪里出了问题。我有一个 NSFetchedResultsController 并从核心数据中获取一些帖子。然后我有一种方法,可以将新帖子插入同一上下文并保存上下文。通常情况下,现在应该调用 didChangeObject: 方法,但实际上并没有。我有一个类似的 View Controller ,我在不同的表(=nsmanaged 对象)上做了基本相同的操作,并且成功调用了 didChangeObject: 方法。
到目前为止我尝试了什么:
为此 View Controller 创建了另一个上下文
移除了 NSFetchedResultsController 的缓存
以下方法从核心数据数据库中提取数据并将其“存储”到 NSFetchedResultsController(变量:controller
)中。
//reloading newsgroups from coredata
- (void)reloadNewsgroupsFromCoreData
{
//creating fetch request
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] initWithEntityName:@"Post"];
//sorting by transient date (hour and secons cutted off)
NSSortDescriptor *sortByDate = [[NSSortDescriptor alloc] initWithKey:@"dateCreatedTransient" ascending:NO];
NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortByDate, nil];
[fetchRequest setSortDescriptors:sortDescriptors];
//where clause
[fetchRequest setPredicate:[NSPredicate predicateWithFormat:@"ref_subscribed_newsgroup == %@ AND references == nil", self.newsgroup]];
//setting fetchrequest
self.controller = [[NSFetchedResultsController alloc]
initWithFetchRequest:fetchRequest
managedObjectContext:self.context
sectionNameKeyPath:@"dateCreatedForSections"
cacheName:nil]; //todo, maybe add a cache here!
//fetch
NSError *error;
[self.controller performFetch:&error];
if (error) {
NSLog(@"%@", error);
}
}
此外,根据文档,我将 NSFetchedResultsController 的委托(delegate)设置为我的 View Controller (这与上述 fetch 方法所在的位置相同)。
在viewDidLoad
中:
self.controller.delegate = self;
然后我实现了协议(protocol)中的方法,还有 didChangeObject:
- (void)controller:(NSFetchedResultsController *)controller didChangeObject:(id)anObject atIndexPath:(NSIndexPath *)indexPath forChangeType:(NSFetchedResultsChangeType)type newIndexPath:(NSIndexPath *)newIndexPath {
UITableView *tableView = self.tableView;
// I HAVE ADDED A BREAKPOINT HERE BUT IT NEVER STOPS HERE.
switch(type) {
case NSFetchedResultsChangeInsert:
[tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:newIndexPath] withRowAnimation:UITableViewRowAnimationFade];
break;
case NSFetchedResultsChangeDelete:
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
break;
case NSFetchedResultsChangeUpdate:
[self configureCell:[tableView cellForRowAtIndexPath:indexPath]
atIndexPath:indexPath];
break;
case NSFetchedResultsChangeMove:
[tableView deleteRowsAtIndexPaths:[NSArray
arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
[tableView insertRowsAtIndexPaths:[NSArray
arrayWithObject:newIndexPath] withRowAnimation:UITableViewRowAnimationFade];
break;
}
}
然后我有另一种方法将一些帖子存储到核心数据中。我认为这很重要:此方法是通过另一个线程的委托(delegate)调用的。 (服务器连接使用 performSelectorOnMainThread:...
调用它)
- (void)storeIntoCoreData:(NSArray*)postsArray
{
...
Post *entity = [NSEntityDescription insertNewObjectForEntityForName: @"Post" inManagedObjectContext:context];
entity.inReply = dummy.in_reply;
entity.body = dummy.body;
entity.email = dummy.email;
entity.from = dummy.from;
entity.messageIdentifier = dummy.message_identifier;
entity.references = dummy.references;
entity.subject = dummy.subject;
entity.dateCreated = dummy.date;
entity.unread = [NSNumber numberWithInt:1];
...
[self.context save:&error];
if (error)
{
NSLog(@"error: %@", error);
}
// IMPORTANT: CURRENTLY I AM CALLING THIS METHOD AGAIN HERE, WHICH
// FETCHES ALL POSTS OUT OF CORE DATA.
// THIS IS SO UGLY AND NOT PERFORMANT.
// THEN I INVOKE RELOADDATA ON THE TABLEVIEW TO RELOAD THE ENTIRE TABLE
// BUT THERE WAS JUST ONE INSERT SO A ENTIRE RELOAD WOULD NOT BE NECESSARY.
[self reloadNewsgroupsFromCoreData];
[self.tableView reloadData];
// I HAVE TO DO THIS BECAUSE THE didChangeObject METHOD GETS NOT CALLED.
}
有没有人提示或建议哪里可能是错的?
感谢和问候,克里斯
最佳答案
问题是您在 viewDidLoad
中设置 Controller 委托(delegate),然后在 reloadNewsgroupsFromCoreData
中分配一个新 Controller 。您新分配的 Controller 没有设置委托(delegate)。尝试直接在 reloadNewsgroupsFromCoreData
中设置委托(delegate)。
您通常不希望在数据发生变化时分配新的 NSFetchedResultsController
。使用 NSFetchedResultsController
的全部目的是在发生变化时通过 NSFetchedResultsControllerDelegate
获取委托(delegate)消息。如果您的获取请求发生变化,您只需要分配一个新的 NSFetchedResultsController
。我建议再看看 Apple Docs .
关于objective-c - didChangeObject : not called of NSFetchedResultsController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10894137/
我正在尝试使用具有混合语言数据的 FRC,并希望有一个部分索引。 从文档看来您应该能够覆盖 FRC - (NSString *)sectionIndexTitleForSectionName:(NSS
使用等效的 NSFetchRequest 重新创建 NSFetchedResultsController 时,为什么 [NSFetchedResultsController PerformFetch:
我正在尝试起草一个可重复使用的类,该类基本上可重复用于具有几乎相同实现的多个实体。基本上我将有几个 UIViewController,每个都包含 UIView,其中包含 UITableView 以及由
我有一个 iPhone 和一个 Android 应用程序。在 iPhone 上,我使用 NSFetchedResultsController 来管理我的 UITableView 的数据。目前我有很多数
NSFetchedResultsController 监视对正在跟踪的整个托管对象的更改。每当在当前上下文中修改任何属性时,例如 – controller:didChangeObject:atInde
自 1 个月以来,我一直在使用 NSFetchedResultsController 构建应用程序,并在 3.1.2 SDK 上测试该应用程序。问题是我一直在我的应用程序中到处使用 NSFetched
我有一个人物和宠物的数据库,具有一对多关系 人宠物 姓名 姓名 宠物>主人 我正在使用由核心数据支持的 UITableView 和 nsfetchedresultscontroller 来显示宠物列表
我有一个 NSFetchedResultsController,它在 TableView 中显示项目列表,包括关联实体的计数。当为此关联添加对象时(使用 addXXXObject),不会调用回调来通知
花了几个小时后,我发现无法在以下文章中由 SQLite 支持的 NSFetchedResultsController 中进行自定义排序。 NSFetchedResultsController cust
我设置了一个 NSFetchedResultsController 来填充 UITableView,基于我的“主”NSManagedObjectContext。 在计时器中,我不断地将对象添加到单独的
在我的应用程序中,我需要循环遍历核心数据中的所有实体,并且我正在使用 NSFetchedresultcontroller。 我现在正在这样做: NSArray *tempArray = [[NSArr
我正在开发我的第一个核心数据支持的应用程序,但无法弄清楚如何正确设置 NSFetchedResultsController。我有两个实体: /-----------\ /--------
我正在使用 NSFetchedResultsController 在 TableView 中显示项目: - (NSInteger)numberOfSectionsInTableView:(UITabl
我将 NSFetchedResultsController 放入我的代码中,这样我就可以对 TableView 数据进行很好的自动分段。 所以我正在运行测试以确保一切正常。我的持久存储中有一个 Boo
我如何使用带有翻译后的排序键和sectionKeyPath的NSFetchedResultsController? 问题:我在数据库中的属性“type”中有 ID,例如 typeA、typeB、typ
大家好 我的 CoreData 驱动应用程序有多个来自同一存储的数据 View ,并且全部使用 NSFetchedResultsController。目前,它们的 NSFetchedResultsCo
我想使用使用 bool 值设置的不同谓词从 NSFetchedResultsController 重新获取数据。如何刷新 NSFetchedResultsController 以获取一组新数据? -
核心数据在 NSManagedObjectContext 类中提供了“executeFetchRequest”方法,我们可以使用该方法从表中获取数据并以任何需要的方式使用它。 现在还有另一种方法,即使
我正在编写一个应用程序,一个屏幕上有两个表格。左表是文件夹列表,右表显示文件列表。当点击左侧的一行时,右侧表格将显示属于该文件夹的文件。 我正在使用 Core Data 进行存储。当文件夹的选择发生变
我有一个由 NSFetchedResultsController 管理的 TableView 。但是,我在查找或创建操作时遇到问题。当用户点击表格 View 的底部时,我正在向服务器查询另一批内容。如
我是一名优秀的程序员,十分优秀!