Reputation: 38960
I'm trying to query a JSON API in objective C and am wondering what SDK "tools" I will need. I know, for example, I will need to be able to send requests, get the data from that request then parse it. Basic structure and object documentation would be much appreciated.
Thanks!
Upvotes: 1
Views: 1423
Reputation: 170849
For sending requests and getting data I'd suggest ASIHTTPRequest lib that provides (most likely) all network-related functions you'll need.
For JSON parsing check this review of several 3rd-party parsers available
Upvotes: 2
Reputation: 46037
To know about how to send request/receive data please check URL Loading System Programming Guide. And to parse JSON please check JSON Framework for Obj-C.
Upvotes: 3