ios – 基于两个参数的排序数组

前端之家收集整理的这篇文章主要介绍了ios – 基于两个参数的排序数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个由两个属性组成的对象数组:NSString和BOOL.我想对这个数组进行排序,以便在所有没有的bool之前出现所有的YES BOOL.然后我想要将具有BOOL YES的对象列表按字母顺序排列,并且我也希望将具有NO的对象按字母顺序排列.是否有某种类型的库可以在目标c中实现这一目标?如果不是最有效的方法是什么?

解决方法

您可以使用NSSortDescriptors进行排序:
// Set ascending:NO so that "YES" would appear ahead of "NO"
NSSortDescriptor *boolDescr = [[NSSortDescriptor alloc] initWithKey:@"boolField" ascending:NO];
// String are alphabetized in ascending order
NSSortDescriptor *strDescr = [[NSSortDescriptor alloc] initWithKey:@"strField" ascending:YES];
// Combine the two
NSArray *sortDescriptors = @[boolDescr,strDescr];
// Sort your array
NSArray *sortedArray = [myArray sortedArrayUsingDescriptors:sortDescriptors];

您可以阅读有关使用描述符here排序的更多信息.

原文链接:https://www.f2er.com/iOS/335111.html

猜你在找的iOS相关文章