如何檢查數組中有多少次重複項。我有一個包含重複項目的數組。下面是數組。計算每個值在數組中重複的次數
"Family:0",
"Family:0",
"Family:0",
"Gold:3",
"Gold:3"
所以,我想對各個項目的迴應值3和2。我怎樣才能做到這一點。希望我明確我的觀點。如果有任何不清楚的地方請問。
下面是我試過的代碼。
int occurrences = 0;
int i=0;
for(NSString *string in arrTotRows){
occurrences += ([string isEqualToString:[arrTotRows objectAtIndex:indexPath.section]]); //certain object is @"Apple"
i++;
}
看到我的答案.... –