Reputation: 35050
I have an other project and some of the records I need there too. Is it an easy way to copy them?
Upvotes: 2
Views: 235
Reputation: 13127
In one app you can access multiple containers. instead of using:
container = CKContainer.defaultContainer()
you can use:
container = CKContainer(identifier: "another_container")
as the identifier use whatever you have specified at your application Capabilities (Specify custom containers)
You can then read records from 1 container and write them to the other.
Upvotes: 4