パラメータが必要なカスタム比較セレクタで sortedArrayUsingSelector メソッドを使用したいと思います。
これが私のカスタムコンパレータ宣言子(.hファイル)です:
- (NSComparisonResult)compareWith:(Object *)otherObject AndIntParameter:(int)param;
問題は sortedArrayUsingSelector で、一種の「WithObject」メソッドがパラメーターを渡すことを許可していないようです。私はこのようなものを探しています:
NSArray *sortedArrayList = [anotherList sortedArrayUsingSelector:@selector(compareWith:AndIntParameter:) withObject:i];
汚い方法でコーディングすることでこれを回避できますが、そうしないほうがいいです...助けていただければ幸いです。