5

我正在尝试配置 CoreData+CloudKitNSPersistentCloudKitContainer用于自动将数据同步到 CloudKit 或从 CloudKit 同步数据。

按照Apple 指南,设置实体、在 Xcode 中添加适当的功能、在我的 AppDelegate 中设置persistentContainer和设置都非常简单。saveContext

我正在通过 拨打电话fetch(),我可以毫无问题地保存和获取记录。我可以在 CloudKit 仪表板中看到它们。save()NSManagedObjectContext

但是,如果我从模拟器中卸载应用程序并重建/重新安装,我的fetchRequest(没有NSPredicate或排序,只是获取所有记录)总是返回一个空列表。我使用的是同一个 iCloud 帐户,并且我已经尝试过公共和私有数据库范围。如果我创建一条新记录,然后重试我的 fetch 请求,我可以检索新创建的记录,但不能检索任何旧记录。我 100% 确定这些记录仍在 CloudKit 数据库中,因为我可以在 CloudKit Dashboard Web 应用程序上看到它们。

我查看了Apple 的 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,afetch()正在读取/写入本地 CoreData 存储,然后在后台运行一个单独的进程来镜像本地 CoreData 记录并将其与 CloudKit 记录合并。

因此,我相信我需要以某种方式等待/收到通知,本地 CoreData 和 CloudKit 记录的同步/合并已在首次启动时完成,然后再拨打我的fetch()电话,而不是fetch()在应用程序打开时立即拨打电话。有任何想法吗?

4

3 回答 3

5

您需要使用NSFetchedResultsController,为什么您认为它不适用于您的应用程序?

有必要的原因是NSFetchedResultsController监视,viewContext并且当同步过程下载新对象并将它们插入到后台上下文中时,automaticallyMergesChangesFromParent将对象合并到viewContext并推进生成令牌。如果从 fetched objects 数组中插入、更新或删除对象,则会调用 FRC 的委托方法来通知您,这些对象是上下文中与 fetch 请求的实体和谓词匹配的对象。

于 2020-09-04T16:52:50.833 回答
0

您可以尝试的是:

  • NSPersistentCloudKitContainerOptions
let id = "iCloud.yourid"  
let options = NSPersistentCloudKitContainerOptions(containerIdentifier: id)  
description?.cloudKitContainerOptions = options
  • 初始化您的 CloudKit 架构(至少需要一次)
do {
     try container.initializeCloudKitSchema()
  } catch {
    print("ERROR \(error)")
 }

编辑:
你能改变吗lazy var persistentContainer: NSPersistentContainer

lazy var persistentContainer: NSPersistentCloudKitContainer

于 2020-09-04T09:05:57.520 回答
0

这是@professormeowingtons 你在模拟器上删除应用程序时提到的事情,它不会显示以前的记录,所以我的建议是在已经配置了 iCloud 帐户的真实设备上尝试你的应用程序,这样你就可以了能够向您的数据库添加一些记录,然后删除该应用程序,重新安装并获取您之前输入的所有记录。

于 2020-09-04T09:29:57.937 回答