JSON を使用して iTunes の RSS フィードを解析していますが、問題が発生しました。次のコードは、movieName 出力の 1 つに対して適切に実行されていますが、まだ movieSummary 出力を取得できません。
-(void)connectionDidFinishLoading:(NSURLConnection *)connection {
allDataDictionary = [NSJSONSerialization JSONObjectWithData:webData options:0 error:nil];
feed = [allDataDictionary objectForKey:@"feed"];
arrayOfEntry = [feed objectForKey:@"entry"];
for (NSDictionary *dictionTitle in arrayOfEntry) {
NSDictionary *title = [dictionTitle objectForKey:@"title"];
NSString *labelTitle = [title objectForKey:@"label"];
[arrayLable addObject:labelTitle];
NSDictionary *summary = [dictionTitle objectForKey:@"summary"];
NSString *labelSummary = [summary objectForKey:@"label"];
[arraySummary addObject:labelSummary];
}
movieName.text = [arrayLable objectAtIndex:0];
movieSummary.text = [arraySummary objectAtIndex:0]; //This is not displaying
}
ここに私が解析しているリンクがあります: http://itunes.apple.com/us/rss/topmovies/limit=300/json