这是一种轻松地将记录从一个 CloudKit 容器复制到另一个容器的方法吗?
Is it a way to easily copy records from one CloudKit container to an other?
我还有一个项目,那里也需要一些记录。复制它们的方法简单吗?
在一个应用中,您可以访问多个容器。而不是使用:
container = CKContainer.defaultContainer()
您可以使用:
container = CKContainer(identifier: "another_container")
作为标识符使用您在应用程序功能中指定的任何内容(指定自定义容器)
然后您可以从 1 个容器读取记录并将它们写入另一个容器。
我还有一个项目,那里也需要一些记录。复制它们的方法简单吗?
在一个应用中,您可以访问多个容器。而不是使用:
container = CKContainer.defaultContainer()
您可以使用:
container = CKContainer(identifier: "another_container")
作为标识符使用您在应用程序功能中指定的任何内容(指定自定义容器)
然后您可以从 1 个容器读取记录并将它们写入另一个容器。