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.
我有一个包含许多数字的数组,我想将其转换为类似数组的直方图,其中对于每个数字,我都有该数字在数组中出现的次数。如果有任何用于 xcode 的 API,我试图到处寻找,但找不到。
最好的方法是什么?
谢谢!!!
NSCountedSet *set = [[NSCountedSet alloc] initWithArray:array];
其中 array 是包含所有元素的组合数组。