我正在NSFetchRequest
使用以下谓词:
[NSPredicate predicateWithFormat:@"index IN %@", indexes];
...indexes
一个NSOrderedSet
数字在哪里。
这给了我一组具有给定索引的“随机排序”对象。我需要对此进行排序,以便对象以与有序集中相同的顺序出现。
最有效的方法是什么?
更新
这是基于 Martin R 回答的类别:
@implementation NSArray (SortUsingValues)
- (NSArray *)sortedArrayUsingValues:(NSOrderedSet *)values keyPath:(NSString *)keyPath
{
NSAssert([values isKindOfClass:[NSOrderedSet class]], nil);
NSAssert([keyPath isKindOfClass:[NSString class]], nil);
return [self sortedArrayUsingComparator:^NSComparisonResult(id object, id otherObject) {
id value = [object valueForKeyPath:keyPath];
id otherValue = [otherObject valueForKeyPath:keyPath];
NSUInteger indexOfValue = [values indexOfObject:value];
NSUInteger indexOfOtherValue = [values indexOfObject:otherValue];
if (indexOfValue > indexOfOtherValue) return NSOrderedDescending;
else if (indexOfValue < indexOfOtherValue) return NSOrderedAscending;
else return NSOrderedSame;
}];
}
@end