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

objectEnumerator()

Returns an enumerator object that lets you access each value in the dictionary. ある列挙子オブジェクトを返します、それはあなたに辞書の中の各値にアクセスさせるものです。

Declaration 宣言

func objectEnumerator() -> NSEnumerator

Return Value 戻り値

An enumerator object that lets you access each value in the dictionary. ある列挙子オブジェクト、それはあなたに辞書の中の各値にアクセスさせるものです。

Discussion 議論

The following code fragment illustrates how you might use the method. 以下のコード断片は、どのようにあなたがそのメソッドを使ったらよいかを図解します。


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

If you use this method with instances of mutable subclasses of NSDictionary, your code should not modify the entries during enumeration. If you intend to modify the entries, use the allValues method to create a “snapshot” of the dictionary’s values. Work from this snapshot to modify the values. あなたがこのメソッドをNSDictionaryの可変サブクラスのインスタンスとともに使うならば、あなたのコードは列挙の間に登録項目を修正すべきではありません。あなたが登録項目それらを修正するつもりならば、allValuesメソッドを使うことでその辞書の持つ値それらの “スナップショット” を作成してください。このスナップショットから作業することでそれら値を修正してください。

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

Enumerating Dictionaries 辞書を列挙する

Related Documentation 関連文書