locoboy
locoboy

Reputation: 38960

Querying JSON API in Objective -C

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

Answers (2)

Vladimir
Vladimir

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

taskinoor
taskinoor

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

Related Questions