We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
`// JSON string -> NSDictionary
NSString *jsonString = @ "{"foo": "bar"}" ;
NSDictionary *dictionary = [jsonString JSONValue];
NSLog(@ "Dictionary value for "foo" is "%@"" , [dictionary objectForKey:@ "foo" ]);
// NSDictionary -> JSON string
NSString *newJsonString = [dictionary JSONRepresentation];
`