Type Method 型メソッド

sortDescriptorWithKey:ascending:comparator:

Creates and returns a sort descriptor initialized with the specified key path and ordering, and a comparator block. 指定されたキーパスと順序付け、そして比較子ブロックで初期化されたソート記述子を作成して返します。

Declaration 宣言

+ (instancetype)sortDescriptorWithKey:(NSString *)key 
                            ascending:(BOOL)ascending 
                           comparator:(NSComparator)cmptr;

Parameters パラメータ

key

The property for performing a comparison.

For information about key paths, see Key-Value Coding Programming Guide. キーパスについての情報として、Key-Value Coding Programming Guideを見てください。

ascending

YES if the receiver specifies sorting in ascending order; otherwise, NO.

cmptr

A comparator block. 比較を行うブロック。

Return Value 戻り値

A sort descriptor that initializes with the specified key, ordering, and comparator.

See Also 参照

Creating a Sort Descriptor ソート記述子を作成する