1

It gives you a variable called JSON of type id, but how do I manipulate this? Is it a string? Do I have to serialize it first? How exactly do I interact with it?

Doug Smith
  • 29,668
  • 57
  • 204
  • 388
  • This might help [other answer](http://stackoverflow.com/questions/13473811/afnetworking-and-json) – mconlin Mar 25 '13 at 13:02

2 Answers2

1

It is returned in the form of dictionary, you just need to extract the value based on the key. Example :

[JSON valueForKey:@"key"];

Rajan Balana
  • 3,775
  • 25
  • 42
0

You can get more than the basics here

Fantastic course, there's very good code about json handling in the photo mania app.

Alex
  • 1,581
  • 1
  • 11
  • 27