Cloud sync between iPad/iPhone app
Posted
by Macatomy
on Stack Overflow
See other posts from Stack Overflow
or by Macatomy
Published on 2010-06-02T23:30:26Z
Indexed on
2010/06/02
23:34 UTC
Read the original article
Hit count: 227
I have a Core Data app that will end up being an iPhone/iPad universal application.
I would like to implement cloud syncing so that an iPhone and an iPad both running the app could share data. I'm planning to use the recently released Dropbox API. Does anyone have any thoughts on the best way to go about doing this? The Dropbox API allows for apps to store files on the cloud. What I was thinking was to original store the database (sqlite) for the app on the cloud and then download that database, but I then realized that using that method would make it painfully difficult to merge changes (rather than replacing the whole database).
Any thoughts are appreciated. Thanks.
© Stack Overflow or respective owner