J'ai les données suivantes sauvegardées sous la forme d'un fichier NSString
:
{
Key = ID;
Value = {
Content = 268;
Type = Text;
};
},
{
Key = ContractTemplateId;
Value = {
Content = 65;
Type = Text;
};
},
Je souhaite convertir ces données en un NSDictionary
contenant les paires clé-valeur.
J'essaie d'abord de convertir le NSString
à un JSON comme suit :
NSData *data = [string dataUsingEncoding:NSUTF8StringEncoding];
id json = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
Cependant, lorsque j'essaie :
NSString * test = [json objectForKey:@"ID"];
NSLog(@"TEST IS %@", test);
Je reçois la valeur suivante NULL
.
Quelqu'un peut-il nous dire quel est le problème ?