For my project course I’m thinking to develop an application in iPhone. I have some objective-c knowledge but I don’t know what kind of API’s Apple provide.
I’ve implemented RESTful web service and I was wondering if there is a way to access features of this RESTful API via iPhone. I mean, what kind of API’s area available to send HTTP GET, POST, … and to process JSON/XML data returned by web service?
Any help is very much appreciated.
All HTTP request methods (POST, GET, PUT, DELETE, etc…) are available with
NSURLConnection.You can parse XML with
NSXMLParserand you can parse JSON with JSON-Framework (it’s really good).