What is the best way to get data from the internet, compressed and composed by PHP, to an iOS app? Currently, the app reads a string formatted like this:
category1#object2#object3#object4~category2#object2#object3[…]
And that is split up by the #
's and ~
's.
Is there a better way to do this, both in the way the data is retrieved (the site it gets it from is open for everyone), and the way the data is formatted?