私のjsonファイルは次のようになります
[{"id":"1","category":"New Category1","title":"New Product2","description":"Please type a description1","imgurl":"http:\/\/s.wordpress.org\/about\/images\/wordpress-logo-notext-bg.png","spectitle":"Specification","specvalue":"Value"},{"id":"2","category":"Mobile","title":"Samsung","description":"Please type a description","imgurl":"http:\/\/s.wordpress.org\/about\/images\/wordpress-logo-notext-bg.png","spectitle":"Price","specvalue":"100$"}]
そして、ID、カテゴリ、タイトル、説明を個々のラベルに印刷する必要がある4つのラベルがあります。jsonオブジェクト全体を正常に解析し、単一のラベルに印刷しました。対応するカテゴリを持つすべてのjsonオブジェクトを対応するラベルに表示する必要があります。
NSString *labelstring =[NSString stringWithFormat:@"%@",[json objectAtIndex:0]];
label1.text=[NSString stringwithformat: objectForKey:@"id"];
label2.text=[NSString stringwithformat:objectForKey:@"category"];
label3.text=[NSString stringwithformat:objectForKey:@"title"];
label4.text=[NSString stringwithformat:objectForKey:@"description"];
ここでjsonはNSArrayの変数で、URL情報などがあります...しかし、個々の値を取得しようとすると取得できません..ガイダンスをお願いします...