0
不管項目的數量在我的陣列,count
總是返回1 的_contentData
陣列來自JSON響應:計數多維數組始終返回1
_contentData = [[NSMutableArray alloc] initWithObjects:JSON, nil];
陣列(_contentData):
(
(
{
id = 1;
name = "Entry 1";
},
{
id = 2;
name = "Entry 2";
},
{
id = 3;
name = "Entry 3";
}
)
)
代碼:
NSLog(@"%lu", (unsigned long)_contentData.count);
輸出:
2013-04-26 18:32:00.968 SP[23542:c07] 1
錯誤:'住宅「數」上找不到對象鍵入'id''。我解析Json到Array的方式是正確的? – 2013-04-26 21:58:15
不,只是編譯器不知道'_contentData [0]'是一個數組。我編輯了代碼,嘗試更新後的版本。 – 2013-04-29 00:26:16