NSFetchedResultsController - 只显示保存在数据库中的结果?

时间:2013-10-24 01:17:50

标签: ios uitableview core-data nsfetchedresultscontroller

我正在使用Core Data和NSManagedObject作为对象模型,用于在保存之前将数据临时存储在应用中。

然后在tableview中显示所有已保存的实例。但是,临时对象也出现在列表中。如何确保我的tableview仅显示实际保存在数据库中的结果?

- (NSFetchedResultsController *)fetchedResultsController
{
    if (_fetchedResultsController != nil) {
        return _fetchedResultsController;
    }

    NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
    // Edit the entity name as appropriate.
    NSEntityDescription *entity = [NSEntityDescription entityForName:@"State" inManagedObjectContext:self.managedObjectContext];
    [fetchRequest setEntity:entity];

    // Set the batch size to a suitable number.
    [fetchRequest setFetchBatchSize:20];

    // Edit the sort key as appropriate.
    NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"timeStamp" ascending:NO];
    NSArray *sortDescriptors = @[sortDescriptor];

    [fetchRequest setSortDescriptors:sortDescriptors];

    // Edit the section name key path and cache name if appropriate.
    // nil for section name key path means "no sections".
    NSFetchedResultsController *aFetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:self.managedObjectContext sectionNameKeyPath:nil cacheName:@"Master"];
    aFetchedResultsController.delegate = self;
    self.fetchedResultsController = aFetchedResultsController;

    NSError *error = nil;
    if (![self.fetchedResultsController performFetch:&error]) {
        // Replace this implementation with code to handle the error appropriately.
        // abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
        NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
        abort();
    }

    return _fetchedResultsController;
}

2 个答案:

答案 0 :(得分:3)

您可以设置

[fetchRequest setIncludesPendingChanges:NO];

来自文档:

  

默认值为YES

     

如果值为NO,则提取请求会跳过检查未保存的更改   并且只返回与持久化中的谓词匹配的对象   存储。

答案 1 :(得分:0)

NSManagedObjectContext NSFetchedResultsController将自动保存上下文。因此,在还原tableView

中的数据之前,您的更改已保存到数据库中

核心数据可以管理内存中的数据,其描述如下:

  

核心数据为变更管理提供了基础架构   将对象保存到存储中并从中检索它们。它可以使用SQLite   作为其持久存储类型之一。但事实并非如此   本身就是一个数据(为了强调这一点:你可以使用例如   只是应用程序中的内存存储。您可以使用Core Data   用于更改跟踪和管理,但从未实际保存任何数据   在文件中。)

要解决您的问题,您可以创建另一个NSManagedObjectContext,用于保存您的临时数据。当您想要将这些临时数据保存到数据库时,只需创建新的NSManagedObject并从de temp数据中复制数据信息并将其保存到永久数据库上下文