0
を私は、このJSONメッセージの「ノード」ノードにアクセスしようとしている
:このコードでは、JSONメッセージの中で、内側のノードにアクセスできません - IOS
{
"nodes": [
{
"node": {
"title": "Jornada del Fútbol Profesional contra el hambre",
"description": "
"image": "",
"fecha": "",
"nid": "",
"noticia_relacionada_1_path": "",
"noticia_relacionada_2_path": "",
"image_small_2": ""
}
}
]
}
:
NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
NSDictionary *results = [responseString JSONValue];
NSDictionary *nodes = [results objectForKey:@"nodes"];
結果辞書を1つの重要な結果があります。ノード辞書には10個のキー結果があります。それは、多くのおかげで
ありがとうございました。 – roof