使用自定义对象排序数组
比较方法
要么为对象实现 compare 方法:
- (NSComparisonResult)compare:(Person *)otherObject {
return [self.birthDate compare:otherObject.birthDate];
}
NSArray *sortedArray = [drinkDetails sortedArrayUsingSelector:@selector(compare:)];
NSSortDescriptor
NSSortDescriptor *sortDescriptor;
sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"birthDate"
ascending:YES];
NSArray *sortDescriptors = [NSArray arrayWithObject:sortDescriptor];
NSArray *sortedArray = [drinkDetails sortedArrayUsingDescriptors:sortDescriptors];
你可以通过向阵列添加多个键轻松地按多个键进行排序。也可以使用自定义比较器方法。看看文档 。
块
NSArray *sortedArray;
sortedArray = [drinkDetails sortedArrayUsingComparator:^NSComparisonResult(id a, id b) {
NSDate *first = [(Person*)a birthDate];
NSDate *second = [(Person*)b birthDate];
return [first compare:second];
}];
性能
通常,-compare:
和基于块的方法比使用 NSSortDescriptor
要快得多,因为后者依赖于 KVC。NSSortDescriptor
方法的主要优点是它提供了一种使用数据而不是代码来定义排序顺序的方法,这样可以轻松地进行设置,以便用户可以通过单击标题行对 NSTableView
进行排序。