我有一个包含多个属性的自定义对象。
一个属性是Type,例如枚举:A,B,C等
这些都有日期。
@property (assign) CustomType customType;
@property (nonatomic, strong) NSDate *startDate;
...
typedef NS_ENUM(NSInteger, CustomType) {
A,
B,
C
};
我想首先放置'C'类型的所有对象,然后按其日期DESC排序其余对象。
实现这一目标的最佳方法是什么?
我已经尝试添加多个sortDescriptors但我只希望C对象位于顶部,然后其余按日期排序,这将按日期对每个分组进行排序。
NSSortDescriptor *sortDescriptor1 =[[NSSortDescriptor alloc] initWithKey:@"customType" ascending:NO];
NSSortDescriptor *sortDescriptor2 =[[NSSortDescriptor alloc] initWithKey:@"startDate" ascending:NO];
NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor1, sortDescriptor2, nil];
NSArray *sortedObjects = [_items sortedArrayUsingDescriptors:sortDescriptors];
实施例
+-------------------------+
| C | 2017-08-16 12:48:53 |
| C | 2017-08-15 12:46:53 |
| B | 2017-08-16 12:48:53 |
| B | 2017-08-14 12:43:53 |
| A | 2017-08-15 12:46:53 |
| A | 2017-08-14 12:31:53 |
+-------------------------+
想要
+-------------------------+
| C | 2017-08-16 12:48:53 |
| C | 2017-08-15 12:46:53 |
| A | 2017-08-16 12:48:53 |
| B | 2017-08-15 12:46:53 |
| A | 2017-08-14 12:43:53 |
| B | 2017-08-14 12:31:53 |
+-------------------------+
我也可以先决定我想要哪种自定义类型,所以我可能希望B位于顶部,其余的只是按日期?
将数组分成两组是否更容易,其中包括ALL C和其他组。对每个子组进行排序,然后将它们重新组合在一起?
然后我可以在下面的谓词中选择我想要的顶级组:
NSPredicate *pred1 = [NSPredicate predicateWithFormat:@"customType == %ld", C];
NSPredicate *pred2 = [NSPredicate predicateWithFormat:@"customType != %ld", C];
NSArray *top = [_items filteredArrayUsingPredicate:pred1];
NSArray *bottom = [_items filteredArrayUsingPredicate:pred2];
NSSortDescriptor *sortDescriptor1 = [[NSSortDescriptor alloc] initWithKey:@"startDate" ascending:NO];
NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor1, nil];
NSArray *sortedTop = [top sortedArrayUsingDescriptors:sortDescriptors];
NSArray *sortedBottom = [bottom sortedArrayUsingDescriptors:sortDescriptors];
//NSArray *items = [NSArray arrayWithObjects:sortedTop, sortedBottom, nil];
NSArray *newArray = @[];
newArray = [newArray arrayByAddingObjectsFromArray:sortedTop];
newArray = [newArray arrayByAddingObjectsFromArray:sortedBottom];
_items = [newArray mutableCopy];
按日期排序 https://stackoverflow.com/a/6084944/2895831
NSLog(@"nodeEventArray == %@", nodeEventArray);
NSSortDescriptor *dateDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"startDate" ascending:NO];
NSArray *sortDescriptors = [NSArray arrayWithObject:dateDescriptor];
NSArray *sortedEventArray = [nodeEventArray sortedArrayUsingDescriptors:sortDescriptors];
NSLog(@"sortedEventArray == %@", sortedEventArray);
过去我按给定的属性对数组进行了分组,并对该单个属性使用了自定义排序。
How to use Custom ordering on NSArray
@property (nonatomic, strong) NSString *level;
NSArray *levels = [array valueForKeyPath:@"@distinctUnionOfObjects.level"];
NSArray *levelsSortOrder = @[@"Beginner", @"Basic", @"Intermediate", @"Expert", @"Advanced", @"Developer", @"Seminar"];
NSArray *sortedArray = [levels sortedArrayUsingComparator: ^(id obj1, id obj2){
NSUInteger index1 = [levelsSortOrder indexOfObject: obj1];
NSUInteger index2 = [levelsSortOrder indexOfObject: obj2];
NSComparisonResult ret = NSOrderedSame;
if (index1 < index2)
{
ret = NSOrderedAscending;
}
else if (index1 > index2)
{
ret = NSOrderedDescending;
}
return ret;
}];
答案 0 :(得分:1)
我喜欢sortedArrayUsingComparator:
,我认为你不能用别人的方法做你想做的事。
sortedArrayUsingComparator:
对排序方式给出了非常大的操作。
其背后的逻辑是:
比较它们之间的两个对象(obj1
和obj2
)。
你决定对这两个问题的排序。
它将遍历整个数组,并通过逐个比较每个对象,它将具有排序结果。
因此,在块中,您必须明确说明为什么对象“优先”对抗另一个对象。
此处CustomType
是其中之一,并且在startDate
之前优先排序。所以让我们按此顺序进行。
然后实施:
NSArray *sortedArray = [unsortedArray sortedArrayUsingComparator: ^(CustomClass *obj1, CustomClass2 *obj2){
CustomType type1 = [obj1 customType];
CustomType type2 = [obj2 customType];
if (type1 == C && type2 == C)
{
return [[obj1 startDate] compare:[obj2 startDate]];
}
else if (type1 == C && type2 != C)
{
return NSOrderedAscending;
}
else if (type1 != C && type2 == C)
{
return NSOrderedDescending;
}
else //if (type1 != C && type2 != C)
{
return [[obj1 startDate] compare:[obj2 startDate]];
}
}];
进行一些重构:
NSArray *sortedArray = [unsortedArray sortedArrayUsingComparator: ^(CustomClass *obj1, CustomClass2 *obj2){
CustomType type1 = [obj1 customType];
CustomType type2 = [obj2 customType];
if (type1 == C && type2 != C)
{
return NSOrderedAscending;
}
else if (type1 != C && type2 == C)
{
return NSOrderedDescending;
}
else //Either (type1 == C && type2 == C) OR (type1 != C && type2 != C)
{
//return [[obj1 startDate] compare:[obj2 startDate]];
return [[obj2 startDate] compare:[obj1 startDate]];
}
}];
请注意,NSOrderedAscending
和NSOrderedDescending
可能必须颠倒,我永远不知道要使用哪一个,我总是在测试。
我用id
替换两个块中的CustomClass
,因为您已经知道了所拥有的对象类。这避免了一系列演员:CustomType type1 = [(CustomClass *)obj1 customType];