- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
在类似的线程之前开始,但我现在知道问题出在哪里,所以我正在为您缩小范围:
我有两个 View Controller 。第一个叫做 MainCategoriesViewController
,第二个是 NetIncomeViewController
。两者都是我的 CoreDataViewController
的子级。在 CoreDataViewController
中,我基本上只是实现了 NSFetchedResultsController
委托(delegate)类的所有委托(delegate)方法,其中包含一个属性,如果用户发生更改(如重新排序)并且 Controller 不应该设置该属性跟踪这些变化。
好的,我的 MainCategoriesViewController
获取请求是这样设置的,并从 viewDidLoad:
- (void)setupFetchedResultsController
{
self.managedObjectContext = ((AppDelegate *)[[UIApplication sharedApplication] delegate]).managedObjectContext;
NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"MainCategory"];
request.sortDescriptors = [NSArray arrayWithObject:[NSSortDescriptor sortDescriptorWithKey:@"position" ascending:YES]];
self.fetchedResultsController = [[NSFetchedResultsController alloc]initWithFetchRequest:request
managedObjectContext:self.managedObjectContext
sectionNameKeyPath:nil cacheName:@"MainCategoryCache"];
}
重新排序是这样完成的:
- (void)tableView:(UITableView *)tableView
moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath
toIndexPath:(NSIndexPath *)destinationIndexPath;
{
if (self.activeField && [self.activeField isFirstResponder]){
[self.activeField resignFirstResponder];
}
self.suspendAutomaticTrackingOfChangesInManagedObjectContext = YES;
//Makes only a mutable copy of the array, but NOT the objects (references) within
NSMutableArray *fetchedResults = [[self.fetchedResultsController fetchedObjects] mutableCopy];
// Grab the item we're moving
NSManagedObject *resultToMove = [self.fetchedResultsController objectAtIndexPath:sourceIndexPath];
// Remove the object we're moving from the array.
[fetchedResults removeObject:resultToMove];
// Now re-insert it at the destination.
[fetchedResults insertObject:resultToMove atIndex:[destinationIndexPath row]];
// All of the objects are now in their correct order. Update each
// object's displayOrder field by iterating through the array.
int i = 1;
for (MainCategory *fetchedResult in fetchedResults)
{
fetchedResult.position = [NSNumber numberWithInt:i++];
}
self.suspendAutomaticTrackingOfChangesInManagedObjectContext = NO;
}
现在重新排序非常快。但是,如果您第一次切换到 NetIncomeViewController
(执行完全相同的提取,但使用不同的缓存名称),MainCategoriesViewControlle
r 中的重新排序会变慢。我已经找到它了,我现在知道为什么了。因为在 self.suspendAutomaticTrackingOfChangesInManagedObjectContext
设置为 NO 之后,所有 NSFetchedResultsController
委托(delegate)方法都会执行两次!第一次他们和第一次访问 NetIncomeViewController
之前一样快,第二次非常慢。
为什么现在执行了两次?因为它们来自同一个实体?为什么这甚至有效果?我该怎么办呢?
最佳答案
(你另一个问题的相同答案)
您是否在 Instruments 中运行时间分析器?如果是这样,那将告诉您为什么它很慢。 Time Profiler 是您的好 helper 。
其次,在委托(delegate)方法中放置一个断点。查看堆栈跟踪,它会告诉您是什么导致了事情发生。
话虽如此,当您处于 NSFetchedResultsController
的回调方法中时,您正在改变 NSFetchedResultsController
中的对象。
那很糟糕。
NSFetchedResultsController
对数据的变化很敏感。它不关心你改变了什么什么,只关心你改变了什么。一旦您更改某些内容,它就会触发委托(delegate)方法以通知您更改。
如果您在委托(delegate)中更改 NSFetchedResultsController
正在监视的对象,您很容易陷入无限循环。它只触发两次的唯一原因是在你第二次运行时,你将顺序设置为它已经存在的顺序。
我建议将您的重新排序逻辑移动到 -[UITableViewDataSource tableView: moveRowAtIndexPath: toIndexPath:]
方法。
关于iOS:NSFetchedResultsController,ControllerDidChangeContent 在重新排序后执行了两次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20935311/
我正在尝试使用具有混合语言数据的 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 的底部时,我正在向服务器查询另一批内容。如
我是一名优秀的程序员,十分优秀!