I'm kinda lost here and I would appreciate if someone would clear things.. My need is to synchronize the content in my app with the content on the server and I have a working Core Data model.
I understand the following:
-The best way to synchronize data on the web with an iPhone is using JSON.
-CoreData needs to be translated to-from JSON because CoreData don't speak web.
-Its not complicated to translate myself with this example but lidenbrock is a library for translating coreData to-from JSON.
-RestKit is integrated with CoreData and does the translation built-in.
-JSONKit is the fastest way to synchronize data
After that the question is should I use JSONKit + lidenbrock or use RestKit instead? any suggestions? did I miss something?
Thanks.