私はよく書かれているように見えるこのJSONを解析しようとしてNSJSONSerialization
いますが、NSArray
.
これは私のコードです:
NSData* gamesData = [NSData dataWithContentsOfURL:
[NSURL URLWithString:@"http://s42sport.com/polarice/json/games.json"]
];
NSDictionary* json = nil;
if (gamesData) {
json = [NSJSONSerialization
JSONObjectWithData:gamesData
options:kNilOptions
error:nil];
NSLog(@"%d",json.count);
}
質問は、
JSON の何が問題になっていますか? NSSerialization が NSDictionary を返さないのはなぜですか?
編集:はい、[...] 対 {...} について学びました。ありがとうございました。