Class

NSSortDescriptor

An immutable description of how to order a collection of objects according to a property common to all the objects. どのようにオブジェクトいくつかからなるあるコレクションを全てのオブジェクトに共通のあるプロパティによって順序付けするかの不変の記述。

Declaration 宣言

@interface NSSortDescriptor : NSObject

Overview 概要

You construct instances of NSSortDescriptor by specifying the key path of the property to compare and the order of the sort (ascending or descending). Optionally, you can also specify a selector to use to perform the comparison, which allows you to specify other comparison selectors, such as localizedStandardCompare: and localizedCaseInsensitiveCompare:. Sorting raises an exception if the objects don’t respond to the sort descriptor’s comparison selector. あなたはNSSortDescriptorのインスタンスそれらを、比較するプロパティのキーパスおよびソートの順序(昇順または降順)を指定することによって構成します。任意に、あなたはまたあるセレクタを指定して比較の実行に使用できます、それはあなたに他の比較セレクタを指定させます、例えばlocalizedStandardCompare:localizedCaseInsensitiveCompare:。ソートは、オブジェクトそれらがソート記述子のもつ比較セレクタに応答しないならば例外を引き起こします。

You can use sort descriptors for the following: あなたはソート記述子を以下に対して使用できます:

Topics 話題

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

Getting Information About a Sort Descriptor ソート記述子についての情報を取得する

Using Sort Descriptors ソート記述子を使う

Relationships 関係

Inherits From 継承元

Conforms To 次に準拠

See Also 参照

Sorting ソートする