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

reverseObjectEnumerator()

Returns an enumerator object that lets you access each object in the array, in reverse order. 逆順で、あなたに配列の中の各オブジェクトにアクセスをさせる、列挙子オブジェクトを返します。

Declaration 宣言

func reverseObjectEnumerator() -> NSEnumerator

Return Value 戻り値

An enumerator object that lets you access each object in the array, in order, from the element at the highest index down to the element at index 0. あなたに配列の中の各オブジェクトに、最も高いインデックスでの要素からインデックス0での要素へと低い方に順番にアクセスをさせる、列挙オブジェクト。

Discussion 議論

When you use this method with mutable subclasses of NSArray, you must not modify the array during enumeration. あなたがこのメソッドをNSArrayの可変のサブクラスで使うとき、あなたはその配列を列挙の間に修正すべきではありません。

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 参照

Querying an Array 配列に問い合わせる

Related Documentation 関連文書