Dealing with JSON on iPhone

by

You can easily use the JSON (JavaScript Object Notation) data format in client-server communications when writing an iPhone app. This blog is not suggesting that JSON is a more superior format for data exchange than its counterparts such as XML. In fact, we have many projects that don’t use JSON. However, handling JSON is relatively straight forward in ObjectiveC.

Unfortunately, Apple iPhone SDK (as of this writing, the latest is iPhone 2.2.1) doesn’t come with a built-in JSON parser. But I found out a good one called json-framework. It is both a generator and a parser. As a generator, json-framework can create JSON data from an NSDictionary. As a parser, you can pass to json-framework an NSString that consists of JSON data and it will return a NSDictionary that encapsulates the parsed data.

Next, I’m going to show you several examples. Before you proceed, download the library and make sure you add it to your SDK path list (see INSTALL file that comes with it). If setup properly, you should be able to start using the library by importing its header file:

#import “JSON/JSON.h”

Consider the following code:

NSDictionary *requestData = [NSDictionary dictionaryWithObjectsAndKeys:

 @”grio”@”username”,

 @”hellogrio”@”password”,

  nil];

This instantiates a new dictionary which we’ll turn into a JSON string. To do so, you’ll need to use a function called JSONRepresentation. This function is added as a category to NSObject. It means that as long as there’s an import of JSON.h file, you can call the function on any NSObject object.

NSString* jsonString = [requestData JSONRepresentation];


And this is what you got when you print (NSLog(@”%@”, jsonString);):


{“username”:”grio”,”password”:”hellogrio”}

 

Parsing is just as simple. Consider the following JSON data:
{
“menu”: {
“id”: “file”,
“value”: “File”,
“popup”: {
“menuitem”: [
{
“value”: “New”,
“onclick”: “CreateNewDoc()”
},
{
“value”: “Open”,
“onclick”: “OpenDoc()”
},
{
“value”: “Close”,
“onclick”: “CloseDoc()”
}
]
}
}
}
Assume that this is the data that you received from a web service called and is currently stored in an NSString called jsonResult. To parse it, you need to create SBJSON object and call one of its initialization method, objectWithString.

SBJSON *json = [[SBJSON new] autorelease];

NSError *jsonError;

NSDictionary *parsedJSON = [json objectWithString:jsonResult error:&jsonError];


If parsing fails for reasons such as invalid construct of JSON format, jsonError variable will be filled with the error info. If it is successful, parsedJSON will contain keys whose values are either an NSString or NSDictionary. Let’s look at the inside of parsedJSON:

NSDictionary* menu = [parsedJSON objectForKey:@”menu”];

NSLog(@”Menu id: %@”, [menu objectForKey:@”id”]);

NSLog(@”Menu value: %@”, [menu objectForKey:@”value”]);


And here’s the output:

Menu id: file

Menu value: File

Observe the JSON data again. popup is an NSDictionary which has an array of menuitem.

NSDictionary* popup = [menu objectForKey:@”popup”];

NSArray* menuItems = [popup objectForKey:@”menuitem”];

NSEnumerator *enumerator = [menuItems objectEnumerator];

NSDictionary* item;

while (item = (NSDictionary*)[enumerator nextObject]) {

NSLog(@”menuitem:value = %@”, [item objectForKey:@”value”]);

}


And this is the output:

menuitem:value = New

menuitem:value = Open

menuitem:value = Close

It’s that simple. Now you’re ready to use JSON in your next iPhone project.

8 Comments

  1. praveen kumar on said:

    this is the great tutoriel for json parsing in iphone

  2. tushar on said:

    Thanks for Post this blog too good, keep on doing great things, a good way to be ahead & success…

  3. James on said:

    That is a great tutorial. I was in a bind before I read this. Helped a lot. Thanks!

  4. sriaknth on said:

    I liked the post. It was clear and explanatory.
    Only problem in this is going through the code due to the color combination. The blue color data on the black background is not visible. If there is chance please consider to change it.

  5. Gareth on said:

    Hi,
    Great stuff, thanks for this. It was the best example I found. Most people chose simple JSON extracts so it was good to see you didn’t.
    Gareth.

  6. Vincent GERMAIN on said:

    Nice article :-)
    We made too a similar thing but in French :p and with a tiny comparaison between xml and json (here).
    About json, I think there is a newer release of the library on the google project (since 12 sept I think).
    Good week :-)

  7. Christopher Truman on said:

    THIS MAKES SO MUCH SENSE!
    Thanks for helping a frustrated dev. Seeing JSON access on the iPhone explained in plain english made my day and saved my butt!
    Thanks :)

Leave a Reply to James Cancel reply

Your email address will not be published. Required fields are marked