user790147
user790147

Reputation: 41

RestKit and storing of data

I have a navigation controller where i have the list of appointments in a table view. I have an add button on the right side corner for the navigation controller. When the user clicks the add button a view will appear with the textfields and buttons. The problem is when ever the user (of the app) adds his appointments and clicks the add button it has to hit the server and store that data. I want to do that using RestKit. Can anybody tell me how to hit the server and how i can store the data.

Upvotes: 1

Views: 1336

Answers (3)

Rémy SAISSY
Rémy SAISSY

Reputation: 81

I recently wrote a detailled overview of RestKit with many piece of code and I think it can help you to understand how it works and how to get things done.

http://blog.octo.com/en/overview-of-restkit-a-core-data-enabled-ios-macosx-framework-for-restful-apps/

Upvotes: 0

Evan Cordell
Evan Cordell

Reputation: 4118

The current documentation is only on github. Most other sources are outdated, thanks to RestKit's rapid development.

The wiki has a lot of good information, and you can find documentation that's always up-to-date in the docs directory.

Upvotes: 2

deanWombourne
deanWombourne

Reputation: 38475

Yes, Google can.

Here is the first result for the search 'restkit tutorial' :

http://mobile.tutsplus.com/tutorials/iphone/restkit_ios-sdk/

And, in case that one is a little out of date, here's the second result for the search 'restkit tutorial' :

http://mobile.tutsplus.com/tutorials/iphone/advanced-restkit-development_iphone-sdk/

Upvotes: 5

Related Questions