gpt4 book ai didi

ios - NSPersistentContainer 的核心数据并发

转载 作者:行者123 更新时间:2023-11-29 11:43:37 24 4
gpt4 key购买 nike

注意:我看过类似的问题,但没有找到描述这种情况的问题。

我正在查看以下来自 Apple 的有关核心数据并发性 (https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/CoreData/Concurrency.html) 的示例代码

NSArray *jsonArray = …;
NSPersistentContainer *container = self.persistentContainer;
[container performBackgroundTask:^(NSManagedObjectContext *context) {
for (NSDictionary *jsonObject in jsonArray) {
AAAEmployeeMO *mo = [[AAAEmployeeMO alloc] initWithContext:context];
[mo populateFromJSON:jsonObject];
}
NSError *error = nil;
if (![context save:&error]) {
NSLog(@"Failure to save context: %@\n%@", [error localizedDescription], [error userInfo]);
abort();
}
}];

在我的应用中,只有在用户点击屏幕上的保存按钮后才会启动保存。在这种情况下,私有(private)上下文是 VC 的属性,我该怎么做?我应该使用子上下文吗?

NSArray *jsonArray = …; //JSON data to be imported into Core Data
NSManagedObjectContext *moc = self.persistentContainer.viewContext; //Our primary context on the main queue

NSManagedObjectContext *private = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSPrivateQueueConcurrencyType];
[private setParentContext:moc];

[private performBlock:^{
for (NSDictionary *jsonObject in jsonArray) {
NSManagedObject *mo = …; // WHICH CONTEXT TO USE? <<<======
//update MO with data from the dictionary
}
NSError *error = nil;
if (![private save:&error]) {
NSLog(@"Error saving context: %@\n%@", [error localizedDescription], [error userInfo]);
abort();
}
}

然后在用户点击保存后执行此操作:

NSManagedObjectContext *moc = self.persistentContainer.viewContext; //Our primary context on the main queue
[moc performBlockAndWait:^{
NSError *error = nil;
if (![moc save:&error]) {
NSLog(@"Error saving context: %@\n%@", [error localizedDescription], [error userInfo]);
abort();
}
}];
}];

还要注意上面示例中使用哪个 moc 的问题 (<<<=====)

编辑: 我最后所做的是立即保存子上下文,以便表格仅使用 viewContext 来显示结果。如果用户没有保存就退出,我会再次从 viewContext 中删除所有结果。保存按钮还在,只是设置了一个标志,表示不删除结果。

最佳答案

如果您有一页表单并且希望在用户按下保存按钮时保存它,那么只需从文本字段(或任何您的数据输入)中获取数据并使用 将其放入核心数据中执行后台任务。由于数据仅在用户编辑时存储在 textFields 中,如果用户推回,他的编辑将丢失。

如果您对包含许多不同实体的复杂文档进行了大量更改,用户可以创建、销毁或链接这些实体,并且所有这些仅在用户按下保存时才保存,那么您应该使用子上下文。您将根据子上下文中的值显示数据,但仅当用户按下保存时才将这些更改推送到父上下文。这是一种非常罕见的情况,我个人从未遇到过这样做的需要。

我强烈怀疑你属于第一种情况。不要使用子上下文。使用 performBackgroundTask 并在用户按下保存时保存数据。

(也是 block 内使用的正确上下文 [private performBlock:^{private 上下文)

关于ios - NSPersistentContainer 的核心数据并发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45176830/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com