【发布时间】:2020-12-23 08:26:04
【问题描述】:
我正在尝试使用 NSPersistentCloudKitContainer 配置 CoreData+CloudKit 以自动将数据同步到 CloudKit 或从 CloudKit 同步数据。
在 the Apple guide 之后,设置实体、在 Xcode 中添加适当的功能、在我的 AppDelegate 中设置 persistentContainer 和 saveContext 已经足够简单了。
我正在通过NSManagedObjectContext 进行fetch() 和save() 调用,并且我能够毫无问题地保存和获取记录。我可以在 CloudKit 仪表板中看到它们。
但是,如果我从模拟器中卸载应用程序并重新构建/重新安装,我的 fetchRequest(没有 NSPredicate 或排序,只是获取所有记录)总是返回一个空列表。我使用的是同一个 iCloud 帐户,并且我已经尝试过公共和私有数据库范围。如果我创建一条新记录,然后重试我的 fetch 请求,我可以检索新创建的记录,但不会检索任何旧记录。我 100% 确定这些记录仍在 CloudKit 数据库中,因为我可以在 CloudKit Dashboard Web 应用程序上看到它们。
我查看了Apple's CoreDataCloudKitDemo 应用程序,它能够在卸载/重新安装后从 CloudKit 数据库中获取“发布”实体,所以我知道这是可能的。但是,它使用的是 NSFetchedResultsController,这不适用于我的应用程序(我的是 SpriteKit 游戏)。
我尝试将我的 CoreData+Cloudkit 代码复制到一个全新的 Xcode 项目中,我可以在那里重现此问题。这是我的代码供参考:
import UIKit
import CoreData
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
lazy var persistentContainer: NSPersistentContainer = {
// Create a container that can load CloudKit-backed stores
let container = NSPersistentCloudKitContainer(name: "coredatacloudkitexample")
// Enable history tracking and remote notifications
guard let description = container.persistentStoreDescriptions.first else {
fatalError("###\(#function): Failed to retrieve a persistent store description.")
}
description.setOption(true as NSNumber, forKey: NSPersistentHistoryTrackingKey)
description.setOption(true as NSNumber, forKey: NSPersistentStoreRemoteChangeNotificationPostOptionKey)
description.cloudKitContainerOptions?.databaseScope = .public
container.loadPersistentStores(completionHandler: { (_, error) in
guard let error = error as NSError? else { return }
fatalError("###\(#function): Failed to load persistent stores:\(error)")
})
container.viewContext.mergePolicy = NSMergeByPropertyObjectTrumpMergePolicy
container.viewContext.transactionAuthor = "nibbler"
// Pin the viewContext to the current generation token and set it to keep itself up to date with local changes.
container.viewContext.automaticallyMergesChangesFromParent = true
do {
try container.viewContext.setQueryGenerationFrom(.current)
} catch {
fatalError("###\(#function): Failed to pin viewContext to the current generation:\(error)")
}
return container
}()
}
// ------
import UIKit
import CoreData
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let viewContext = (UIApplication.shared.delegate as! AppDelegate).persistentContainer.viewContext
let fetchRequest: NSFetchRequest<Person> = Person.fetchRequest()
let people: [Person]
do {
people = try viewContext.fetch(fetchRequest)
print("---> fetched People from CoreData: \(people)")
// people.isEmpty is ALWAYS true (empty array) on first install of app, even if records exist in table in CloudKit
if people.isEmpty {
let person = Person(context: viewContext)
person.name = "nibbler"
// save the data through managed object context
do {
try viewContext.save()
print("--> created Person in CoreData: \(person)")
} catch {
print("---> failed to save Person: \(error.localizedDescription)")
}
}
} catch {
print("---> error: \(error)")
}
}
}
我错过了什么?为什么我只能获取在此应用安装期间创建的记录,而不能获取之前的记录?
更新:似乎如果我等待几秒钟并在第一次安装应用时重新尝试获取,我能够从CloudKit 数据库。首次启动时,我还可以在控制台中看到大量 CoreData+CloudKit 日志消息。这就是我的想法——即使使用NSPersistentCloudKitContainer,fetch() 正在读取/写入本地 CoreData 存储,然后在后台运行一个单独的进程来镜像和合并本地 CoreData 记录与 CloudKit记录。
因此,我相信我需要以某种方式等待/收到通知,本地 CoreData 和 CloudKit 记录的同步/合并在首次启动时已完成,然后再拨打我的 fetch() 电话,而不是立即拨打 fetch()应用程序打开。有什么想法吗?
【问题讨论】:
标签: ios swift core-data cloudkit nspersistentcloudkitcontainer