func contains(Any) -> Bool
var count: Int
var firstObject : Any?
var lastObject : Any?
func object(at: Int) -> Any
subscript(Int) -> Any
func objects(at: IndexSet) -> [Any]
func reverseObjectEnumerator () -> NSEnumerator
Availability 有効性
Technology
func objectEnumerator() -> NSEnumerator
An enumerator object that lets you access each object in the array, in order, from the element at the lowest index upwards. あなたに配列の中の各オブジェクトに、最も低いインデックスでの要素から高い方へと順番にアクセスをさせる、列挙子オブジェクト。
Returns an enumerator object that lets you access each object in the array, in order, starting with the element at index 0, as in: あなたに配列の中の各オブジェクトに、インデックス0での要素で始めて、順番にアクセスをさせる列挙子オブジェクトを返します、このように:
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 NSFast
). Fast enumeration is available in macOS 10.5 and later and iOS 2.0 and later.
より効率的なのは、高速列挙プロトコルを使うことです(NSFast
を見てください)。高速列挙は、macOS 10.5以降とiOS 2.0以降で利用可能です。
func contains(Any) -> Bool
var count: Int
var firstObject : Any?
var lastObject : Any?
func object(at: Int) -> Any
subscript(Int) -> Any
func objects(at: IndexSet) -> [Any]
func reverseObjectEnumerator () -> NSEnumerator
func nextObject () -> Any?