IOS web service recommendations

I have a MYSQL server setup. What is my option for developing an iOS web server that will allow me to do CRUD with iOS devices.

Please help, it will be very helpful. This is my first stackoverflow post, getting recommendations to join this site ..

+3
source share
4 answers

I would recommend the Apache2 / PHP / MySQL stack for developing a web service for use with an iOS application. Consider using one of the common PHP frameworks, such as codeIgnitor or cakePHP, and send your output in JSON format (not SOAP - too much overhead).

+2
source

PHP ( ) Ruby on Rails, , - SO

+2

RobyOnRails absolutely! Since you can easily use RESTful web services, and there is a large RESTKit objective-c environment for matching objects and an abstract layer for network requests.

+1
source

Although I have not used this, I am a fan of http://getfrapi.com/ , it is the right tool for the job.

0
source

All Articles