mySQL database to iPhone app
问题 I have a MySQL database on a web server and need to read the data from an iPhone app. What is the best way to do this? The data needs to be accessed from the web server and will be updated from time to time. Is the NSURL Class the way to go? thanks for any help. 回答1: I suggest a simple web technology on the server side -- PHP, Ruby on Rails, etc. -- that acts as a basic RESTful-ish web service that sends out JSON. This is straightforward and doesn't require a lot of programming expertise --