I\'ve parsed some JSON data using NSJSONSerialization from the Foundation framework - however, I\'m getting a weird key for an NSDictionary group as follows
\"st
this is not a valid JSON string.
u can check the same putting this string in any json viewer e.g. http://json.parser.online.fr/
The description
method of NSDictionary
(which is used if you output a dictionary with NSLog, or print it in the debugger) encloses strings in quotation marks only if they contain special characters.
This output format is described in Old-Style ASCII Property Lists in the "Property List Programming Guide":
The quotation marks can be omitted if the string is composed strictly of alphanumeric characters and contains no white space (numbers are handled as strings in property lists). ...
Note that in general you cannot deduce the type from the NSLog() output. 123
can be a number or a string. But in this case, shape
can only be a string.