NSLog(@"By age: %@",[people sortedArrayUsingDescriptors:@[ageSortDescriptor]]); /* 2017-06-06 23:15:02.101 NSSortDescriptor_Demo[9103:1255482] By age: ( "Charlie Smith 33", "Quentin 31", "Bod Jones 27", "Alice Smith 24", " Alberts 12" ) */
NSLog(@"By first name: %@",[people sortedArrayUsingDescriptors:@[firstNameSortDescriptor]]); /* 2017-06-06 23:15:02.102 NSSortDescriptor_Demo[9103:1255482] By first name: ( " Alberts 12", "Alice Smith 24", "Bod Jones 27", "Charlie Smith 33", "Quentin 31" ) */ NSLog(@"By last name, first name: %@",[people sortedArrayUsingDescriptors:@[lastNameSortDescriptor ,firstNameSortDescriptor]]); /* 2017-06-06 23:15:02.102 NSSortDescriptor_Demo[9103:1255482] By last name, first name: ( "Quentin 31", " Alberts 12", "Bod Jones 27", "Alice Smith 24", "Charlie Smith 33" ) */