How can I sort an NSMutableArray alphabetically?

2019-01-16 20:06发布

I want to sort an NSMutableArray alphabetically.

6条回答
走好不送
2楼-- · 2019-01-16 20:40

You can do this to sort NSMutableArray:

[yourArray sortUsingSelector:@selector(localizedCaseInsensitiveCompare:)];
查看更多
再贱就再见
3楼-- · 2019-01-16 20:42

Maybe this can help you:

[myNSMutableArray sortUsingDescriptors:@[[NSSortDescriptor sortDescriptorWithKey:@"firstName" ascending:YES],[NSSortDescriptor sortDescriptorWithKey:@"lastName" ascending:YES]]];

All is acording to NSSortDescriptor...

查看更多
别忘想泡老子
4楼-- · 2019-01-16 20:43

The other answers provided here mention using @selector(localizedCaseInsensitiveCompare:)
This works great for an array of NSString, however the OP commented that the array contains objects and that sorting should be done according to object.name property.
In this case you should do this:

NSSortDescriptor *sort = [NSSortDescriptor sortDescriptorWithKey:@"name" ascending:YES];
[yourArray sortUsingDescriptors:[NSArray arrayWithObject:sort]];

Your objects will be sorted according to the name property of those objects.

查看更多
我想做一个坏孩纸
5楼-- · 2019-01-16 20:45
NSSortDescriptor *valueDescriptor = [[NSSortDescriptor alloc] initWithKey:@"name" ascending:YES]; // Describe the Key value using which you want to sort. 
NSArray * descriptors = [NSArray arrayWithObject:valueDescriptor]; // Add the value of the descriptor to array.
sortedArrayWithName = [yourDataArray sortedArrayUsingDescriptors:descriptors]; // Now Sort the Array using descriptor.

Here you will get the sorted array list.

查看更多
趁早两清
6楼-- · 2019-01-16 20:47
NSSortDescriptor * sortDescriptor;
sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"Name_your_key_value" ascending:YES];
NSArray * sortDescriptors = [NSArray arrayWithObject:sortDescriptor]; 
NSArray * sortedArray;
sortedArray = [Your_array sortedArrayUsingDescriptors:sortDescriptors];
查看更多
成全新的幸福
7楼-- · 2019-01-16 21:03

Use the NSSortDescriptor class and rest you will get every thing here

查看更多
登录 后发表回答