0
我有一個可疑的陣陣與dictionnairies。我想統計有多少詞典具有特定的價值?NSmutableArray與dictionnarie值如何計算指定值?
NSDictionary * question = [self.tabQuestionnaire objectAtIndex:indexPath.row]; [問題objectForKey:@ 「主題」]
我有一個可疑的陣陣與dictionnairies。我想統計有多少詞典具有特定的價值?NSmutableArray與dictionnarie值如何計算指定值?
NSDictionary * question = [self.tabQuestionnaire objectAtIndex:indexPath.row]; [問題objectForKey:@ 「主題」]
- (NSInteger的)countValue :(的NSString *)值forKey:(的NSString *)鍵{
NSInteger的結果= 0;
for (NSDictionary *question in self.tabQuestionnaire){
if ([value isEqualToString: [question objectForKey:key]]){
result++;
}
return result;
}
感謝。知道我找到部分對象的數量,我怎麼才能正確地在我的數組中正確地推廣? –
你是什麼意思?要填充什麼數組?你想保存每個鍵的計數結果嗎? – divol
我找到了解決方案,我生成了nsmutabledictionnary,並按正確的順序添加了objets排序。 –