Instance Method
インスタンスメソッド
sortedArrayWithOptions:usingComparator:
Returns an array that lists the receiving ordered set’s elements in ascending order, as determined by the comparison method specified by a given NSComparator
block.
ある配列を返します、それは受け手側の順序集合のもつ要素を昇順で列記します、与えられたNSComparator
ブロックによって指定される比較メソッドで決定されるとおりにです。
Parameters
パラメータ
opts
A bitmask that specifies the options for the sort (whether it should be performed concurrently and whether it should be performed stably).
あるビットマスク、それはソートのためのオプションを指定します(それが並行に実行されるべきかどうかそしてそれが変動なく実行されるべきかどうか)。
cmptr
A comparator block.
比較を行うブロック。
Return Value
戻り値
An array that lists the receiving ordered set’s elements in ascending order, as determined by the comparison method specified cmptr
.
新しい配列、それは、受け手側の順序集合の持つ要素を昇順で、cmptr
で指定される比較メソッドによって決定されるとおりに列記するものです。
See Also
参照
Creating a Sorted Array
ソート配列を作成する
- sortedArrayUsingDescriptors:
Returns an array of the ordered set’s elements sorted as specified by a given array of sort descriptors.
与えられた配列の中のソート記述子それらによって指定される通りにソートされるこの順序集合のもつ要素からなる配列を返します。
- sortedArrayUsingComparator:
Returns an array that lists the receiving ordered set’s elements in ascending order, as determined by the comparison method specified by a given NSComparator
block
ある配列を返します、それは受け手側の順序集合のもつ要素を昇順で列記します、与えられたNSComparator
ブロックによって指定される比較メソッドで決定されるとおりにです。