iOS7 中 NSFetchedResultsController 的问题?
Posted
技术标签:
【中文标题】iOS7 中 NSFetchedResultsController 的问题?【英文标题】:Problems with NSFetchedResultsController in iOS7? 【发布时间】:2014-02-15 20:44:31 【问题描述】:我正在使用NSFetchedResultsController
将一些数据加载到UITableView
。无论我保存多少对象,它都只会加载第一个。如果我从UITableView
中删除那个对象并重新加载它,有时它会显示我保存的一个或多个其他对象。这是非常不可预测的。
奇怪的是我使用的代码在 ios6 SDK 上运行良好。我知道问题出在NSFetchedResultsController
上,因为当我使用 NSFetchRequest 发出获取请求时,返回的数据是正确的。这是代码;
- (void) viewWillAppear:(BOOL)animated
[super viewWillAppear:animated];
NSError *error;
if (![[self fetchedResultsController] performFetch:&error])
exit(-1);
- (void)viewDidUnload
self.fetchedResultsController = nil;
- (NSFetchedResultsController *)fetchedResultsController
if (_fetchedResultsController != nil)
return _fetchedResultsController;
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"HatInfo" inManagedObjectContext:[self.appDelegate managedObjectContext]];
[fetchRequest setEntity:entity];
NSSortDescriptor *sort = [[NSSortDescriptor alloc] initWithKey:@"lastSaved" ascending:NO];
[fetchRequest setSortDescriptors:[NSArray arrayWithObject:sort]];
[fetchRequest setFetchBatchSize:9];
NSArray *fetchedObjects = [[self.appDelegate managedObjectContext] executeFetchRequest:fetchRequest error:nil];
//returns the correct amount of objects
NSLog(@"FetchedObjects: %lu", (unsigned long)[fetchedObjects count]);
NSFetchedResultsController *theFetchedResultsController =
[[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest
managedObjectContext:[self.appDelegate managedObjectContext] sectionNameKeyPath:nil
cacheName:@"Root"];
self.fetchedResultsController = theFetchedResultsController;
_fetchedResultsController.delegate = self;
return _fetchedResultsController;
- (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
id sectionInfo = [[_fetchedResultsController sections] objectAtIndex:section];
//returns the incorrect amount
return [sectionInfo numberOfObjects];
【问题讨论】:
您确定没有在应用程序的其他部分为其他 fetchedResultsController 使用 @"Root" 缓存吗? 我不太确定,那只是从 Ray Wenderlich 那里复制的代码。我实际上将缓存设置为零,现在它可以工作了。你想把它作为答案吗?你知道如果我将缓存设置为零,我是否完全失去了 fetchedresultscontroller 的好处? @LombaX 作为答案添加。无需将其更改为 nil,只需将缓存名称从 @"Root" 更改为其他名称,例如 @"HatInfoFetchedResultsControllerCache" 【参考方案1】:如果您在核心数据代码的其他部分使用相同的cacheName
(例如:您的应用程序中的另一个fetchedResultsController
),可能会发生这种意外行为。
您可以尝试将缓存名称更改为不同的名称或 nil,看看会发生什么。
【讨论】:
尝试将其更改为任意随机名称,但仍然得到错误的效果。 Nil 最终为我工作。再次感谢。【参考方案2】:在开始获取之前添加此行:
[NSFetchedResultsController deleteCacheWithName:<< catch name>>];
【讨论】:
以上是关于iOS7 中 NSFetchedResultsController 的问题?的主要内容,如果未能解决你的问题,请参考以下文章
关系的 NSFetchedResultsController 委托回调
NSFetchedResultsController - TableView 中的 UI 更新不完整