可能重複:
Iterar over array of entity and get value of some key based on value of 「other key」 matche有條件檢索領域從字典的基礎上,其他領域的價值
請,任何人都可以給我我如何能得到建議或提示我的字典中所有salary
字段的值,如果狀態字段不爲空?我只想從字典中的那些對象中檢索salary
字段,其中status != null
。請注意,我的字典是動態的,這意味着我可能有超過四個條目。任何幫助或提示高度讚賞。先謝謝你。
myArray=(
{
Name = "john1";
Address = "san diego";
Status = "active";
salary = "100;
},
{
Name = "steve ";
Address = "birmingham";
Status = "<null>";
salary = "100;
},
{
Name = "allan";
Address = "san diego";
Status = "active";
salary = "100;
},
{
Name = "peter";
Address = "san diego";
Status = "<null>";
salary = "100;
},
)
最後一個概念的作品! :D我只需要首先聲明一個NSString變量,該變量將是條件內的測試。謝謝! (y) – baste
是否有一個工資的價值? – baste
確定您需要對新的nsmutable數組進行排序並添加值,我已經編輯了我的答案,並且接受了答案,如果它幫助您的話 –