最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

什么是最有效的方式来排序NSSet?

SEO心得admin34浏览0评论
本文介绍了什么是最有效的方式来排序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];
发布评论

评论列表(0)

  1. 暂无评论