tags:

views:

60

answers:

1

What is the fastest way of getting a single record from a MySQL database on the server side to an iPhone native app?

The return type is NSString

+1  A: 

You should start by designing an API, which may be usable by other clients as well. A simple possibility is a RESTful JSON API.

Matthew Flaschen