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

reverseObjectEnumerator()

Returns an enumerator object that lets you access each object in the ordered set. あなたに順序集合の各オブジェクトにアクセスさせる列挙子オブジェクトを返します。

Declaration 宣言

func reverseObjectEnumerator() -> NSEnumerator

Return Value 戻り値

An enumerator object that lets you access each object in the ordered set, in order, from the element at the highest index downwards. ある列挙子オブジェクト、それはあなたに順序集合の中の各オブジェクトにアクセスさせます、順番に、最も高いインデックスでの要素から下に向かって。

Discussion 議論

When you use this method with mutable subclasses of NSOrderedSet, you must not modify the ordered set during enumeration. あなたがこのメソッドをNSOrderedSetの可変のサブクラスで使う時、あなたは順序集合を列挙の間に修正してはいけません。

It is more efficient to use the fast enumeration protocol (see NSFastEnumeration). Fast enumeration is available in macOS 10.5 and later and iOS 2.0 and later. より効率的なのは、高速列挙プロトコルを使うことです(NSFastEnumerationを見てください)。高速列挙は、macOS 10.5以降とiOS 2.0以降で利用可能です。

See Also 参照

Accessing Set Members 集合メンバにアクセスする