I am in the planning stage of a new project that will require to use Core Data. It has these requirements: 1. Be able to access same data across multiple devices. 2. Be able to access same data in offline or online 3. Guarantee data will not be lost.
Couple years ago, I embarked on similar project. But I had to abandon these features.
Does Core Data with iCloud syncing work well enough for current iOS 7 and 8 to warrant another attempt?
If not, I am thinking about using CloudKit and local Core Data storage. But then I will have to write extra code to update both.
Any suggestions?
CoreData with iCloud syncing. It seems to work now and there are lots of WWDC videos onCoreData. Plus theCoreDatadebugging in iOS 8 is much improved and you can usedeveloper.icloud.comto see what's being written to the CoreData store.CloudKithas no offline storage so you will need to use CoreData and then sync between CoreData and CloudKit - could be tricky. As always, the issue with accessing data from multiple devices simultaneously is conflict resolution and no technology will provide that for you out-of-the-box (except last write wins, of course) - Robotic Cat