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

后端 未结 6 1468
感动是毒
感动是毒 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 18:51

    Be careful using NSURLConnection on the iPhone. It is known to have memory leaks which can crash an app very quickly. If you're doing lots of HTTP requests, don't expect NSURLConnection to work for you. Find something else, possible some curl wrapper.

提交回复
热议问题