Zakman411
Zakman411

Reputation: 1764

Syncing Core Data: iOS to OSX, vice versa

I'm exploring my options for syncing Core Data from iOS apps to OSX, and vice versa. I just watched a presentation on zSync as a possible option, but noticed it's not really updated anymore. Does anyone have any preferred solutions for this?

Thanks, Zach

Upvotes: 4

Views: 616

Answers (1)

ryyst
ryyst

Reputation: 9791

  1. Sync via iTunes. This is possible since iOS 4.0, I believe.
  2. Sync via a server running on the device. You can look here for a simple HTTP server. Other options include WebDAV, FTP, etc.
  3. Use cloud sync.

Option 2 and 3 are better if you don't want to sync the entire dataset but only subsets or if you need to do "complex" data syncing (think merging events from a calendar).

Upvotes: 3

Related Questions