代码之家  ›  专栏  ›  技术社区  ›  fxfuture

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

  •  0
  • fxfuture  · 技术社区  · 11 年前

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

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

    - (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 回复  |  直到 11 年前
        1
  •  3
  •   Martin R    11 年前

    您可以设置

    [fetchRequest setIncludesPendingChanges:NO];
    

    根据文件:

    默认值为 YES .

    如果值为 NO ,获取请求跳过检查未保存的更改 并且只返回与持久化中的谓词匹配的对象 百货商店

        2
  •  0
  •   Jing    11 年前

    NSManagedObjectContext NSFetchedResultsController将自动保存上下文。因此,在恢复tableView中的数据之前,您的更改已经保存到数据库中

    核心数据可以管理内存中的数据,具体描述为:

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

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