Are there best practices for sending data to/from iOS? Should I stay away from JSON and/or XML? Also, are there well-known frameworks for this?
This is the first time I’ve had to send data to/from an iOS platform.
Edit
The client/server communication is from iOS to PHP and back again. I planned on sending a REST GET/POST request and receiving the page as JSON/XML. However, I’m certainly open to suggestions.
I ended up using XMLReader which I found online. You can use native loading and this just converts the XML into a dictionary which is much easier to deal with than using the raw
NSXMLParser.