MLS1984
MLS1984

Reputation: 307

Can CloudKit be used to store data and send from one user to another?

The data that I'm interested in sending is photos, videos, and contact information from one persons device to another.

Upvotes: 0

Views: 256

Answers (2)

Edwin Vermeer
Edwin Vermeer

Reputation: 13127

Yes, CloudKit can do that all. The demo app for this CloudKit based helper library is a complete chat app: https://github.com/evermeer/EVCloudKitDao

Upvotes: 0

Michael
Michael

Reputation: 9044

CloudKit has private and public databases. If you store data in the private database, a different logged in user cannot access the data. If you store it in the public database, your app "owns" the data and can therefore choose to make it available to other users.

Upvotes: 3

Related Questions