I've managed to get my existing core data app to work with iCloud. After days of study, it was actually surprisingly simple. It seems that 3 things are essential:

  • to add an entitlements file (in recent Xcode, this can be done using by selecting the target, select "Summary pane", scroll down, check enable entitlements"

  • to add the correct options while adding the persisten store, in my case

    NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:
        // other options
        @"<arbitrary name>", NSPersistentStoreUbiquitousContentNameKey,
        iCloudURL, NSPersistentStoreUbiquitousContentURLKey,
        nil]
    

    where

    NSURL * iCloudURL = [[NSFileManager defaultManager] URLForUbiquityContainerIdentifier:nil];
    

The `nil' here indicating that information from the Entitlements.plist file is used.

  • enabling iCloud support for the app through the developer portal. This might involve generating a unique app-ID, something I hadn't done before.

Actually, at the moment I am not sure this last step is crucial for development---i've enabled another app without this last step and it seems to work.

Anyhow, I've noticed that two existing core data bases of the same app on different iDevices will synchronise new entries to the core data stack, but will not automatically sync the existing records.

One way of syncing data from device A to B is to delete the existing core data database on B, and then restart the app on B. However, this is not a proper merge.

Does anybody know a way to merge two existing core data databases on different apps at the moment the apps are upgraded to use iCloud support, i.e., use the options above and all that?

Thanks

link|improve this question
maybe can you find help in this similar question stackoverflow.com/questions/6588180/… – IgnazioC Jan 23 at 23:42
No, although the Recipes app contains useful code (among which adding the store to the persistent store coordinator in the background---useful when merging large core-data databases) it doesn't address the issue of merging two pre-existing core-data instances on two different devices. I was looking for a way of replaying the transaction logs somehow. – davidav Feb 6 at 23:16
Any progress @davidav? I'm stuck with the same issue. – damon Feb 14 at 19:43
No, not really. I am getting weirder behavior nowadays. It appears that some updates get lost, whicht makes the DBs on the two different devices different. I'm now using the method of starting the persistent store coordinator in a separate thread---like recipes above---but that doesn't make things any better or more transparent. – davidav Feb 17 at 22:26
feedback

2 Answers

I have not done it, but when saving to the iCloud there is high risk for conflicting information if the data has also been updated or exists on another device. If the conflicts are not properly resolved then the flow between the two devices will not occur properly. Resolving the conflicts can be complicated but the simplest would be to just let the most recent win. Apple has conflict handling procedures that get triggered when saving to overwrite to the ubiquitous store identifies a conflict.

link|improve this answer
The core data iCloud implementation is actually quite good, you typically don't run in too many conflicts. Perhaps if you're editing the same record in two different instances, probably the last saved record will eventually prevail. – davidav Feb 6 at 23:18
feedback

Maybe this helps: https://gist.github.com/1475162 (by @steipete)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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