本文介绍了什么是最有效的方式来排序NSSet?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
基于对象的属性,在 NSSet
/ NSMutableSet
中排序对象的最有效方法是什么集合?现在我的方式是通过迭代每个对象,将它们添加到 NSMutableArray
,并排序该数组与 NSSortDescriptor
。
What's the most efficient way to sort objects in an NSSet
/NSMutableSet
based on a property of the objects in the set? Right now the way I am doing it is by iterating through each object, add them to a NSMutableArray
, and sort that array with NSSortDescriptor
.
推荐答案
尝试使用
[[mySet allObjects] sortedArrayUsingDescriptors:descriptors];
编辑:对于iOS≥4.0和Mac OS X≥10.6,直接使用
Edit: For iOS ≥ 4.0 and Mac OS X ≥ 10.6 you can directly use
[mySet sortedArrayUsingDescriptors:descriptors];
这篇关于什么是最有效的方式来排序NSSet?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!