Search code examples
iphoneiosrestrestkit

Simple Restful framework/client on iOS other than Restkit?


I have been playing around with Restkit for about a day now and its complexity is driving me insane.

I am looking for a simple, well maintained, restful client on iOS that can communicate with my web server written in rails. I only require the following: Easy call to CREATE/UPDATE/DELETE with flexibility to check the response code as well as the response body (I rely on the response body to set certain server related ids to my objects)

Unfortunately Resty doesn't' really support ARC so it's out of my realms right now.

Any recommendations?


Solution

  • I highly recommend AFNetworking. It's small, fast, well maintained and easy to use.

    In addition to AFNetworking there is also another lib that has been recently released called NSRails, which aims particularly to simplifying CRUD when using Rails. It is a newer lib though and personally I haven't used it, but it looks promising.