0
無法解析json字符串如何將json字符串解析爲鍵值對?
我有以下硬編碼的json。我試圖將其轉換爲字典並解析它,但我無法這樣做。
NSString *hcResponse = @"{\"status\":1,\"value\":\"Successfully Login\"}";
如何解析這樣的json到鍵值對?
無法解析json字符串如何將json字符串解析爲鍵值對?
我有以下硬編碼的json。我試圖將其轉換爲字典並解析它,但我無法這樣做。
NSString *hcResponse = @"{\"status\":1,\"value\":\"Successfully Login\"}";
如何解析這樣的json到鍵值對?
最後,我通過自己
//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];
想通