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

objectEnumerator()

Returns an enumerator object that lets you access each object in the set. あなたに集合の各オブジェクトにアクセスさせる列挙子オブジェクトを返します。

Declaration 宣言

func objectEnumerator() -> NSEnumerator

Return Value 戻り値

An enumerator object that lets you access each object in the set. ある列挙子オブジェクト、それはあなたに集合の中の各オブジェクトにアクセスさせます。

Discussion 議論

The following code fragment illustrates how you can use this method. 以下のコード断片は、どのようにあなたがこのメソッドを使用できるかを例示します。


NSEnumerator *enumerator = [mySet objectEnumerator];
id value;
 
while ((value = [enumerator nextObject])) {
    /* code that acts on the set’s values */
}

When this method is used with mutable subclasses of NSSet, your code shouldn’t modify the set during enumeration. If you intend to modify the set, use the allObjects method to create a “snapshot” of the set’s members. Enumerate the snapshot, but make your modifications to the original set. このメソッドがNSSetの可変のサブクラスで使われる場合、あなたのコードはその集合を列挙の間に修正すべきではありません。あなたが集合の修正を目論むならば、allObjectsメソッドを使うことで、集合のもつメンバの “スナップショット” を作成してください。そのスナップショットを列挙してください、しかしあなたの修正は元の集合にしてください。

Special Considerations 特別な注意事項

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

Accessing Set Members 集合メンバにアクセスする

Related Documentation 関連文書