简体   繁体   中英

Core Data iCloud sync between two apps (iPhone and iPad)

I submitted my first iPad app to apple a few days ago. In the meantime the iPhone version of it is almost ready. I would like to use iCloud to synchronize the core data model between both apps. Is it possible to do this? As I wrote, these are two different applications (not a universal app) that use a core data store with the same structure: names, entities and attributes are the same. Is it possible to do this? Do I have to change anything in the core data model? I was thinking that if I have to do radical changes to it, it would be more convenient to remove the binary from iTunes Connect before it gets reviewed instead of having to do difficult migration changes afterwards. Any tips?

iCloud's support for Core Data is supposed to be virtually automatic. You do have to do some extra work though to set up syncing and to respond to changes as they occur via the cloud (refresh UI etc). You shouldn't have to change your model as long as you haven't used the new ordered relationships introduced in iOS5 (not supported via iCloud).

Other things to think about are the amount of data you are planning to store and whether you are seeding Core Data with an initial data set on each device.

Having said all that, Core Data via iCloud is new technology and there are still some issues to be ironed out by the early adopters. There is no sample code from Apple yet or many guidelines on best practice. If I were you I would hang back from doing this straight away.

Take a look at the Core Data/iCloud release notes .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM