如果我在NSDictionary“dict”中保存我的数据
SELECT
我怎么知道我在季节中拥有多少个物体,我知道如何保存NSArray并计算它但实际上并不是阵列。我在stackoverflow上看到的所有问题都是使用数组对象。
NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:returnData options:NSJSONReadingMutableLeaves error:nil];
答案 0 :(得分:0)
试一试这将给出值/键数组
[dict allValues]; or [dict allKeys]
答案 1 :(得分:0)
NSDictionary有一个count
方法:
NSInteger count = [dict[@"seasons"] count]; // Returns 2