up vote 5 down vote favorite
7
share [g+] share [fb]

is there a way to automatically sync my Core Data Model with a server (preferably REST)?

Thanks

link|improve this question

I answered a similar question here: stackoverflow.com/questions/5035132/… – chris Feb 19 '11 at 18:39
feedback

1 Answer

up vote 3 down vote accepted

Apple has shared their Sync Services Framework it is documented here:

http://developer.apple.com/documentation/Cocoa/Conceptual/SyncServices/SyncServices.html

This section is specifically related to syncing managed objects:

http://developer.apple.com/documentation/Cocoa/Conceptual/SyncServices/Articles/UsingCoreData.html#//apple_ref/doc/uid/TP40005232

As for which style of data transfer is used, I'm not sure if it using REST, I don't see it immediately obvious.

Typically the data transferred to and from REST services doesn't include large binary objects or complex data structures. If REST is a requirement you may need to do something custom, but search through the available documentation you might find everything you are looking for.

link|improve this answer
2  
Thanks for your answer. The only problem is, that Sync Services isn't available on the iPhone, as I've read recently. :-( – Stefan Apr 13 '09 at 9:27
feedback

Your Answer

 
or
required, but never shown

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