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

countByEnumeratingWithState:objects:count:

Returns by reference a C array of objects over which the sender should iterate. それのすべてにわたってセンダーが反復すべきオブジェクトいくつかからなるC配列を参照によって返します。

Declaration 宣言

- (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state 
                                  objects:(K  _Nullable *)buffer 
                                    count:(NSUInteger)len;

Parameters パラメータ

state

Context information that is used in the enumeration to, in addition to other possibilities, ensure that the collection has not been mutated. 前後関係情報、それは列挙において使われて、さまざまな他の可能性に加えて、コレクションが変化させられてしまわないことを確実にします。

objects

A C array of objects over which the sender is to iterate. いくつかのオブジェクトからなるC配列、それはセンダーが反復することになります。

len

The maximum number of objects to return in objects. objectsにおいて返すオブジェクトの最大数。

Return Value 戻り値

The number of objects returned in objects. Returns 0 when the iteration is finished. objectsにおいて返されるオブジェクトの数。0を反復が完了された場合に返します。

See Also 参照

Enumerating Dictionaries 辞書を列挙する