我的网络服务返回这个数组:
[{"用户名":"xcodeSim","PUNTOS":"5"}]
我所做的是通过 addObject 将它们放入 NSMutableArray 中,最后我得到了这个:
( <---NSMutableArray Opening
( <---What about this?
{ <----NSDictionary Opening
PUNTOS = 5;
username = xcodeSim;
} <----NSDictionary Closing
),
( <---What about this?
{ <----NSDictionary Opening
PUNTOS = 5;
username = dannyrodri;
} <----NSDictionary Closing
)
) <---NSMutableArray Closing
这是一个包含 2 个对象的数组。但是这两个对象似乎是数组,每个都有 1 个字典,对吗?