How do I deserialize a JSON string into an NSDictionary? (For iOS 5+)
问题 In my iOS 5 app, I have an NSString that contains a JSON string. I would like to deserialize that JSON string representation into a native NSDictionary object. \"{\\\"password\\\" : \\\"1234\\\", \\\"user\\\" : \\\"andreas\\\"}\" I tried the following approach: NSDictionary *json = [NSJSONSerialization JSONObjectWithData:@\"{\\\"2\\\":\\\"3\\\"}\" options:NSJSONReadingMutableContainers error:&e]; But it throws the a runtime error. What am I doing wrong? -[__NSCFConstantString bytes]: