Type Method 型メソッド

sortDescriptorWithKey:ascending:

Creates and returns a sort descriptor with the specified key path and ordering. ソート記述子をこの指定されたキーパスと順序付けで作成して返します。

Declaration 宣言

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

Parameters パラメータ

key

The key path to use when 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. YES、もしレシーバがソートを昇順に指定するならば、そうでなければNO

Return Value 戻り値

A sort descriptor initialized with the specified key path and sort order, and the default comparison selector (compare). 指定されたキーパスとソート順序、そして省略時の比較セレクタ(compare)で初期化されたあるソート記述子。

See Also 参照

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

Related Documentation 関連文書