init(key: String?, ascending: Bool, selector: Selector?)
Creates a sort descriptor with a specified string key path, ordering, and comparison selector.
ソート記述子をある指定された文字列キーパス、順序付け、そして比較セレクタ(選択子)で作成して返します。
init<Root, Value>(keyPath : KeyPath<Root, Value>, ascending: Bool)
Creates a sort descriptor with a specified key path and ordering.
init(key: String?, ascending: Bool, comparator: Comparator)
Creates a sort descriptor with a specified string key path and ordering, and a comparator block.
ソート記述子をある指定された文字列キーパスと順序付け、そしてある比較ブロックで作成します。
init<Root, Value>(keyPath : KeyPath<Root, Value>, ascending: Bool, comparator: Comparator)
Creates a sort descriptor with a specified key path and ordering, and a comparator block.
init?(coder: NSCoder)
Creates a sort descriptor by decoding from the coder you specify.
ソート記述子をあなたが指定するコーダからデコードすることによって作成します。
init<Compared>(SortDescriptor<Compared>)
Creates a sort descriptor using a sort descriptor you specify.