After googling, I did not find any tutorials, but using JSONKit should be self-evident.
After loading your JSON channel using NSURLConnection or ASIHTTPRequest, simply create a dictionary of all objects in the JSON channel as follows:
//jsonString is your downloaded string JSON Feed NSDictionary *deserializedData = [jsonString objectFromJSONString]; //Helpful snippet to log all the deserialized objects and their keys NSLog(@"%@", [deserializedData description]);
After creating the dictionary, you can simply do something like this:
NSString *string = [deserializedData objectForKey:@"someJSONKey"];
And these are the basics of JSONKit.
JSONKit is much more powerful, of course, you can find some other things you can do with it in JSONKit.h
source share