다음 데이터가 저장되어 있습니다 NSString
.
{
Key = ID;
Value = {
Content = 268;
Type = Text;
};
},
{
Key = ContractTemplateId;
Value = {
Content = 65;
Type = Text;
};
},
이 데이터를 NSDictionary
키 값 쌍을 포함하는 로 변환하고 싶습니다 .
나는 변환 먼저 시도하고 NSString
A를 JSON은 다음과 같이 객체 :
NSData *data = [string dataUsingEncoding:NSUTF8StringEncoding];
id json = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
그러나 내가 시도 할 때 :
NSString * test = [json objectForKey:@"ID"];
NSLog(@"TEST IS %@", test);
나는 값을 NULL
.
누구든지 문제가 무엇인지 제안 할 수 있습니까?