21
-(NSMutableArray *)sortArrayByProminent:(NSArray *)arrayObject
{
    NSArray * array = [arrayObject sortedArrayUsingComparator:^(id obj1, id obj2) {
        Business * objj1=obj1;
        Business * objj2=obj2;
        NSUInteger prom1=[objj1 .prominent intValue];
        NSUInteger prom2=[objj2 .prominent intValue];
        if (prom1 > prom2) {
            return NSOrderedAscending;
        }
        if (prom1 < prom2) {
            return NSOrderedDescending;
        }
        return NSOrderedSame;
    }];

    NSMutableArray *arrayHasBeenSorted = [NSMutableArray arrayWithArray:array];

    return arrayHasBeenSorted;
}

基本的に、配列をソートするために使用するこのブロックがあります。

次に、そのブロックを返すメソッドを書きたいと思います。

どうすればいいですか?

私は試した

+ (NSComparator)(^)(id obj1, id obj2)
{
    (NSComparator)(^ block)(id obj1, id obj2) = {...}
    return block;
}

まだ機能していないとしましょう。

4

1 に答える 1

57

このようなブロックを返すメソッド シグネチャは、

+(NSInteger (^)(id, id))comparitorBlock {
    ....
}

これは次のように分解されます。

+(NSInteger (^)(id, id))comparitorBlock;
^^    ^      ^  ^   ^  ^       ^
ab    c      d  e   e  b       f

a = Static Method
b = Return type parenthesis for the method[just like +(void)...]
c = Return type of the block
d = Indicates this is a block (no need for block names, it's just a type, not an instance)
e = Set of parameters, again no names needed
f = Name of method to call to obtain said block

更新:あなたの特定の状況でNSComparatorは、すでにブロックタイプです。その定義は次のとおりです。

typedef NSComparisonResult (^NSComparator)(id obj1, id obj2);

そのため、次の typedef を返すだけで済みます。

+ (NSComparator)comparator {
   ....
}
于 2012-11-02T10:49:30.287 に答える