私はいくつかのjson出力を読んでいます...いくつかの整数だけです。最初の NSLog は完全に出力します。この場合、3 つの要素があります。私が推測する特定の要素にアクセスする方法がわかりません。
NSMutableArray *json = (NSMutableArray*)[NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
NSLog(@"json: %@ \n",json);
int count = (int)[json objectAtIndex:0];
int count1 = (int)[json objectAtIndex:1];
int count2 = (int)[json objectAtIndex:2];
NSLog(@"count %i %i %i\n",count,count1,count2);