无法解析json字符串
我有以下硬编码的json。我尝试将其转换为字典并解析它,但我无法这样做。
NSString *hcResponse = @"{\"status\":1,\"value\":\"Successfully Login\"}";
如何将这样的json解析为键值对?
答案 0 :(得分:0)
最后,我自己想通了
//convert the string to nsdata
NSData *jsonData = [hcResponse dataUsingEncoding:NSUTF8StringEncoding];
NSError *error;
//convert the data to json dictionary
NSDictionary *jsonDic = [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingAllowFragments error:nil];