我有一个由两个属性组成的对象数组: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排序的更多信息.