What is the best approach for building an iphone client for a rails app?

后端 未结 6 1466
感动是毒
感动是毒 2020-12-23 18:22

I have a fairly standard rails app and would like to be able to access the basic CRUD (Create, Update, Delete) operations as well as queries I have added, from an iPhone app

6条回答
  •  天涯浪人
    2020-12-23 19:07

    If you don't like parsing XML (and who does?) and can configure the backend to spit out JSON instead of XML, I highly recommend using a library such as json-framework. It's so much easier to just read data into objects than have to parse through XML nodes.

提交回复
热议问题