如何检查数组中重复了多少时间项。我有一个包含重复项的数组。下面是数组。
"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++;
}