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

sort(using:)

Sorts the receiver in ascending order, as determined by the comparison method specified by a given selector. レシーバを、ある与えられたセレクタによって指定される比較メソッドによって決定されるとおりに昇順にソートします。

Declaration 宣言

func sort(using comparator: Selector)

Parameters パラメータ

comparator

A selector that specifies the comparison method to use to compare elements in the array. 配列の中の要素を比較するのに使う比較メソッドを指定するセレクタ。

The comparator message is sent to each object in the array and has as its single argument another object in the array. The comparator method should return NSOrderedAscending if the array is smaller than the argument, NSOrderedDescending if the array is larger than the argument, and NSOrderedSame if they are equal. comparatorメッセージは、配列の中の各オブジェクトに送られます、そしてそれのただ1つの引数として配列の中の別のオブジェクトを持ちます。comparatorメソッドは、配列が引数より小さいならばNSOrderedAscendingを、配列が引数より大きいならばNSOrderedDescendingを、そしてそれらが等しいならばNSOrderedSameを返すべきです。

See Also 参照

Rearranging Content 内容を並べ替える

Related Documentation 関連文書