我已将范围对象添加到NSMutable数组,即[{5,12} {0,4} {18,10}]。现在我想按递增顺序对这个NSMutable数组进行排序。我使用以下代码来按顺序获取NSMutable数组对象。
NSArray *stringIndexes = [StringIndexes copy];
stringIndexes = [stringIndexes sortedArrayUsingSelector:@selector(compare:)];
NSLog(@"stringIndexes..:%@",stringIndexes);
但它没有提供所需的输出。如果有人知道如何对具有范围对象的NSMutable数组进行排序。请帮帮我。
感谢所有人。
答案 0 :(得分:5)
如果要向数组添加范围,请使用
NSValue *value = [NSValue valueWithRange:(NSRange)range];
如果要对数组进行排序:
[myArray sortUsingComparator:^NSComparisonResult(NSValue *val1, NSValue *val2, BOOL *stop) {
NSRange range1 = [val1 rangeValue];
NSRange range2 = [val2 rangeValue];
// you need to fine tune the test below - not sure what you want
if(range1.location == range2.location) return NSOrderedSame;
if(range1.location < range2.location) return NSOrderedAscending;
if(range1.location > range2.location) return NSOrderedDescending;
assert(!"Impossible");
} ];