Reputation: 165
If I develop an app and place it on TestFlight that uses CloudKit will all the people using the app be logged into MY Icloud, or will they use their own? If they use mine it should work but if they use their own I will need to change the code to create the tables I need.
Upvotes: 0
Views: 138
Reputation: 318794
CloudKit only uses each individual user's iCloud account.
But there are two parts - the public and the private databases.
The public databases go against your usage allotment. The private databases go against the user's own allotment.
Either way, you don't need to change code to create the tables. You need to use the CloudKit dashboard to move your schemas to production.
This is all documented in the CloudKit Quick Start.
Upvotes: 1