var allObjects : [Any]
The array of unenumerated objects.
列挙されないオブジェクトからなる配列。
Availability 有効性
Technology
func nextObject() -> Any?
The next object from the collection being enumerated, or nil
when all objects have been enumerated.
列挙されているコレクションからの次のオブジェクト、またはすべてのオブジェクトが列挙されてしまっているならばnil
。
The following code illustrates how this method works using an array: 以下のコードは、どのようにこのメソッドが配列を使って働くかを図解します:
var allObjects : [Any]