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

nextObject()

Returns the next object from the collection being enumerated. 列挙されているコレクションから次のオブジェクトを返します。

Declaration 宣言

func nextObject() -> Any?

Return Value 戻り値

The next object from the collection being enumerated, or nil when all objects have been enumerated. 列挙されているコレクションからの次のオブジェクト、またはすべてのオブジェクトが列挙されてしまっているならばnil

Discussion 議論

The following code illustrates how this method works using an array: 以下のコードは、どのようにこのメソッドが配列を使って働くかを図解します:


NSArray *anArray = // ... ;
NSEnumerator *enumerator = [anArray objectEnumerator];
id object;
 
while ((object = [enumerator nextObject])) {
    // do something with object...
}

See Also 参照

Getting the Enumerated Objects 列挙されるオブジェクトを取得する