在我的應用程序中,我需要遍歷每個NSArray
,獲取與NSArray
中的密鑰'people'關聯的NSInteger
,然後將它們一起添加。首先從每個NSArray
檢索每個特定的NSInteger
會是一個好的起點?從幾個NSArrays中檢索1個特定的密鑰並將它們加在一起
有問題的數組在控制檯中返回像這樣。
(
"<Prayers:DDomBXIONY:(null)> {\n Anonymous = 1;\n DeviceID = 123;\n FirstName = Name;\n LastName = Name;\n Location = HI;\n PrayerWarriors = 8;\n Request = Hi;\n Title = Hi;\n UserId = RtXN6QZsgaIiPw4SjFWGtkxXx;\n dateMade = \"Jan_09_2015\";\n}"
)
基本上只需要從每個PrayerWarriors鍵檢索NSInteger,並將它們全部添加在一起。
(
"<Prayers:DDomBXIONY:(null)> {\n Anonymous = 1;\n DeviceID = 123;\n FirstName = Name;\n LastName = Name;\n Location = HI;\n PrayerWarriors = 8;\n Request = Hi;\n Title = Hi;\n UserId = RtXN6QZsgaIiPw4SjFWGtkxXx;\n dateMade = \"Jan_09_2015\";\n}",
"<Prayers:yG7GC4bCIH:(null)> {\n Anonymous = 1;\n DeviceID = 123;\n FirstName = Name;\n LastName = Name;\n Location = bye;\n PrayerWarriors = 0;\n Request = bye;\n Title = bye;\n UserId = RtXN6QZsgaIiPw4SjFWGtkxXx;\n dateMade = \"Jan_09_2015\";\n}"
)
NSArray中沒有使用像「人」鍵引用值,它使用索引整數。不確定你在問什麼。 – Adama 2015-01-09 23:12:30
這是一個有點不同的數組,因爲它來自使用Parse的PFObject。我發佈了一個樣本。 @Adama – user717452 2015-01-09 23:16:20
好吧,我不知道解析對象和東西,所以我不能給你一個答案,但也許是領導,你檢查了一些keypath方法嗎? http://nshipster.com/kvc-collection-operators/可能類似於@ unionOfObjects.people – 2015-01-09 23:20:07