一,代码。
1
2
3
4
5
6
7
8
9
10
11
12
13
|
- ( void )viewDidLoad { [ super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. //直接排序对象 NSSortDescriptor *descriptor = [NSSortDescriptor sortDescriptorWithKey:nil ascending:YES]; NSArray *descriptors = [NSArray arrayWithObject:descriptor]; NSArray *myDataArray = [NSArray arrayWithObjects:@ "what" , @ "xero" , @ "highligth" , @ "mountain" , @ "Victory" , @ "Balance" , nil]; NSLog(@ "---myDataArray---%@" ,myDataArray); NSArray *resultArray = [myDataArray sortedArrayUsingDescriptors:descriptors]; NSLog(@ "%@" , resultArray); //NSArray 使用sortedArrayUsingDescriptors,返回排序好的数组。 //NSMutableArray可以直接使用sortUsingDescriptors,对数组本身排序。 } |
二,输出。
1
2
3
4
5
6
7
8
|
2015 - 10 - 23 11 : 56 : 45.178 对数组进行排序[ 6739 : 168615 ] ( Balance, Victory, highligth, mountain, what, xero ) |
总结
以上所述是小编给大家介绍的iOS对数组进行排序的实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
原文链接:http://www.cnblogs.com/yang-guang-girl/archive/2017/08/16/7371677.html