Creating a Sort Descriptor
ソート記述子を作成する
- initWithKey:ascending:
Creates a sort descriptor with a specified string key path and sort order.
ソート記述子をある指定された文字列キーパスとソート順序で作成します。
- initWithKey:ascending:selector:
Creates a sort descriptor with a specified string key path, ordering, and comparison selector.
ソート記述子をある指定された文字列キーパス、順序付け、そして比較セレクタ(選択子)で作成して返します。
- initWithKey:ascending:comparator:
Creates a sort descriptor with a specified string key path and ordering, and a comparator block.
ソート記述子をある指定された文字列キーパスと順序付け、そしてある比較ブロックで作成します。
- initWithCoder:
Creates a sort descriptor by decoding from the coder you specify.
ソート記述子をあなたが指定するコーダからデコードすることによって作成します。
Getting Information About a Sort Descriptor
ソート記述子についての情報を取得する
ascending
A Boolean value that indicates whether the receiver specifies sorting in ascending order.
あるブール値、それはレシーバが昇順でソートすることを指定するかどうかを指し示します。
key
The key that specifies the property to compare during sorting.
ソートの間に比較することになるプロパティを指定するキー。
selector
The selector for comparing objects.
オブジェクトを比較するためのセレクタ。
comparator
The comparator for the sort descriptor.
ソート記述子のための比較子。
Using Sort Descriptors
ソート記述子を使う
- compareObject:toObject:
Returns a comparison result value that indicates the sort order of two objects.
ある比較結果値を返します、それは2つのオブジェクトのソート順序を指し示します。
- allowEvaluation
Forces a securely decoded sort descriptor to allow evaluation.
ある安全にデコードされたソート記述に、評価を許可するように強制します。