返されたJSONの解析に少し問題があります。私はJSONの操作にかなり慣れていません。最初のJSON配列要素から会社名を取得しようとしています。NSMutabeArrayとNSMutableDictionaryの使用を混乱させているような気がします。私が得るものはnullです。私が間違っていることについて何か考えはありますか?
NSString *url = @"http://www.google.com/finance/info?infotype=infoquoteall&q=C,JPM,AIG,AAPL";
NSData* data = [NSData dataWithContentsOfURL:
[NSURL URLWithString: url]];
//parse out the json data
NSError* error;
NSMutableArray* json = [NSJSONSerialization
JSONObjectWithData:data //1
options:kNilOptions
error:&error];
NSString* companyName = [[json objectAtIndex:0] objectForKey:@"name"] ; //Where I need some help
NSLog(@"we got %@", companyName);