Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm developing an application for iOS/OS X and i want to sync data between them. for now I use Core Data for persistent data. I read that iCloud is not enough mature to use with core data.

  1. Is that true ?

so i try to use the new DropBox sync API(to sync the SQLite file), but there's no support for OS X.

  1. Is Parse SDK a good idea? (it will also allow me to add Android support)
  2. If no, have you other solution?

Thank you.

share|improve this question
what is wrong with the iCloud...? – holex Feb 17 at 20:31
why the down vote? i'm just asking to have clear idea before using iCloud!! and in this site : goddess-gate.com/dc2/index.php/post/452 the author say: "I do not recommend you to use this feature in a production environment" and in the last comment he say the that icloud+core data still buggy. – Red Mak Feb 17 at 20:41
@holex It would make more sense to ask what is right about iCloud with Core Data. It has numerous problems right now. – Tom Harrington Feb 17 at 23:43
@TomHarrington, any specific details, please? – holex Feb 18 at 8:56
Examples: openradar.me/13102447 and openradar.me/13119691 are two of the more serous issues I've run into. There are many more. – Tom Harrington Feb 18 at 16:16

1 Answer

up vote 4 down vote accepted

i read that icloud is not enough mature to use with core data.

is that true ?

Yes, I've worked with it quite a bit but I cannot recommend it at present.

so i try to use the new dropBox sync API(to sync the sqlite file), but there's no support for mac.

  1. is parse sdk a good idea (that will allow me to add android support)?
  2. if no, have you other solution ?

Parse has a good reputation. There's an open source project called FTASync that integrates it with Core Data.

Some other options:

  • TICoreDataSync, which syncs via Dropbox but lets you use Core Data
  • WasabiSync, a third-party project that syncs Core Data via their own servers.
  • Simperium, another one like Wasabi, syncing Core Data via their own servers.

At present I don't have enough experience with any of these to endorse them. They're all designed to sync Core Data outside of iCloud but I can't say which works best.

share|improve this answer
thank you for your detailed answer, i think i'll see if i can use iCloud without problems,else i'll use TICoreDataSync because with parse user have to create a new account(many user have dropBox account). – Red Mak Feb 18 at 0:13
It's your call of course, but I really could not recommend iCloud with Core Data in current versions of iOS or Mac OS X. I really hope they can get it fixed, but for now I'd steer clear. – Tom Harrington Feb 18 at 0:18
it's really confusing to see a major service buggy like you and other say :( – Red Mak Feb 18 at 0:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.