Instance Method インスタンスメソッド

initWithKey:ascending:comparator:

Creates a sort descriptor with a specified string key path and ordering, and a comparator block. ソート記述子をある指定された文字列キーパスと順序付け、そしてある比較ブロックで作成します。

Declaration 宣言

- (instancetype)initWithKey:(NSString *)key 
                  ascending:(BOOL)ascending 
                 comparator:(NSComparator)cmptr;

Parameters パラメータ

key

The property key 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 ソート記述子を作成する