Skip to content

Instantly share code, notes, and snippets.

@sazameki
Created September 4, 2009 22:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sazameki/181189 to your computer and use it in GitHub Desktop.
Save sazameki/181189 to your computer and use it in GitHub Desktop.
JSON parser sample
#import "SZJsonParser.h"
NSString *str = @"[ 'Apple', 'Banana' ]";
id obj = [str jsonObject]; // obj will be an array or a dictionary
NSLog(@"JSON Object: %@", obj);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment