Skip to content

Instantly share code, notes, and snippets.

@aodhol
Created April 29, 2015 14:38
Show Gist options
  • Save aodhol/ea3614f68c34c4aa1b55 to your computer and use it in GitHub Desktop.
Save aodhol/ea3614f68c34c4aa1b55 to your computer and use it in GitHub Desktop.
NSDictionary *rabbits = @{@"name": @"Bugs", @"color":@"#777"};
NSError *error;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:rabbits
options:NSJSONWritingPrettyPrinted
error:&error];
NSLog(@"Pretty Printed JSON:%@", [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment