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

sortedArray(using:)

Returns an array of the set’s content sorted as specified by a given array of sort descriptors. 与えられた配列の中のソート記述子それらによって指定される通りにソートされるこの集合のもつ内容からなる配列を返します。

Declaration 宣言

func sortedArray(using sortDescriptors: [NSSortDescriptor]) -> [Any]

Parameters パラメータ

sortDescriptors

An array of NSSortDescriptor objects. NSSortDescriptorオブジェクトの配列。

Return Value 戻り値

An NSArray containing the set’s content sorted as specified by sortDescriptors. sortDescriptorsによって指定される通りにソートされる、集合の内容を含んでいるNSArray。

Discussion 議論

The first descriptor specifies the primary key path to be used in sorting the set’s contents. Any subsequent descriptors are used to further refine sorting of objects with duplicate values. See NSSortDescriptor for additional information. 最初の記述子は、プライマリキー(主キー)のパスを指定して、集合のもつ内容をソートするのに使われます。あらゆる後に続く記述子は、まったく同じ値を持ついくつかのオブジェクトのソートをさらに進んで改良するために使われます。さらなる情報としてNSSortDescriptorを見てください。