我試圖創建的JSON看起來像門鎖的NSDictionary的NSArray從
[
{
property1 = "test1",
property2 = "test2",
},
{
property1 = "test1",
property2 = "test2",
},
...
]
到目前爲止,所有我能得到使用的NSDictionary是這樣的:
[
key1 = {
property1 = "test1",
property2 = "test2",
},
key 2 = {
property1 = "test1",
property2 = "test2",
},
...
]
...這是沒有好。有沒有一種簡單的方法在NSDictionary中創建無鍵數組?
使用'NSArray'? – 2013-11-27 09:36:29
是什麼類型?你使用的是什麼JSON編碼器?你可以向我們展示反序列化代碼+ NSLog類型的你從JSON中獲得什麼 –
讓我看看你創建JSON的代碼 – manujmv