我正在努力寻找一种NSArray
像这样排序的好方法:
它是一个 s 数组NSDictionary
,我用它来跟踪长字符串中每个单词的出现。所以它可能看起来像这样:
[{"hello", 5}, {"world", 10}, {"this", 1}, {"that", 3}]
现在我想NSDictionary
按值对其进行排序,使其看起来像这样:
[{"world", 10}, {"hello", 5}, {"that", 3}, {"this", 1}]
我已经查看了 sortDescriptorsNSSortDescriptor
的initWithKey
方法,但它要求键的名称相同,这不适用于我的情况。
你建议我在这种情况下使用什么?先感谢您!