Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
辞書の 2 つの nsmutablearrays をマージする必要がありますが、重複した辞書を削除する方法はありますか?
よろしくお願いします。
実際、順序を気にしない場合は、NSMutableSet を使用して重複したアイテムをフィルタリングします。
NSMutableSet *set = [NSMutableSet set]; for (id item in arr1) { [set addObject:item]; } for (id item in arr2) { [set addObject:item]; }
その後、ユニークなアイテムのセットを取得できます。