-1

いくつかの配列 (array1,2,3,...) を含む配列 (mainArray) をソートしようとしています。Comparator
(NSnumber) は、各 array1,2,3... の index8 にあります。

どの方法を使用すればよいですか?

これに対する解決策はありますか?
どうもありがとう

乾杯

ティム

4

2 に答える 2

1

を並べ替えることができますNSMutableArray

// Create an array of arrays of integers using the new array and number literal syntax 
NSMutableArray* arrayOfArrays = 
    [NSMutableArray arrayWithArray:@[ @[ @0, @1, @2 ], @[ @1, @2, @3 ] ];

// The key on which to sort is located at this index in each array
NSUInteger sortKeyIndex = 2;

// Sort the array of arrays using a stable sort. This means that arrays which considered
// equal in arrayOfArrays will retain their relative positions in the sorted arrayOfArrays
// Use a comparator block to sort arrayOfArrays. 
[arrayOfArrays sortWithOptions:NSSortStable 
               usingComparator:^(id lhs, id rhs) {
    // Cast the two elements of arrayOfArrays being compared to their actual type (NSArray)
    NSArray* lhsArray = lhs;
    NSArray* rhsArray = rhs;

    // Extract the element of each array which is used as a sort key
    // This makes use of the new array index syntax
    NSNumber* lhsNumber = lhsArray[sortKeyIndex];
    NSNumber* rhsNumber = rhs[sortKeyIndex];

    // Unbox the integers from each NSNumber to get the actual values of the sort keys
    NSInteger lhsSortKey = [lhs integerValue];
    NSInteger rhsSortKey = [rhs integerValue];

    // Compare the two sort keys
    if (lhsSortKey < rhsSortKey) {
        return NSOrderedAscending;
    } else if (lhsSortKey > rhsSortKey) {
        return NSOrderedDescending;
    } else {
        return NSOrderedSame;
    }
}];
于 2012-09-16T23:38:09.643 に答える
1

コンパレータを使用して NSArray をソートすると、すべての比較を完全に制御できます。
したがって、次を使用できます。

array=[array sortedArrayUsingComparator: ^ NSComparisonResult (id obj1, id obj2)
{
    // obj1 and obj2 are two arrays
    NSNumber* n1=[obj1 objectAtIndex:8];
    NSNumber* n2=[obj2 objectAtIndex: 8];
    <compare the numbers and return NSOrderedAscending, NSOrderedSame or NSOrderedDescending>
}];
于 2012-09-16T23:35:14.507 に答える