如何知道數組中出現重複的次數?在NSMutableArray中查找重複值
for (NSUInteger index = 0; index < count; index++)
{
NSDictionary *dico = [myArray objectAtIndex:index ];
NSString *exp = [dico objectForKey:@"name"];
NSLog(@"index %d : %@",index,exp);
}
這是我的NSLog:
index 0 : Mike
index 1 : Peter
index 2 : Franck
index 3 : Peter
想知道哪裏是我的重複值。
THX
你想消除重複或只是算一個名字出現了多少次在你的數組? – Alladinian
嗨想要刪除它們,但需要保留一個 – XcodeMania