- countForObject:
Returns the count associated with a given object in the set.
この集合の中の与えられたオブジェクトと結び付けられる計数を返します。
Availability 有効性
Technology
- (NSEnumerator
<ObjectType > *)objectEnumerator;
An enumerator object that lets you access each object in the set once, independent of its count. ある列挙子オブジェクト、それはあなたに集合の中の各オブジェクトに一度だけアクセスを、それの計数から独立して行わせます。
If you add a given object to the counted set multiple times, an enumeration of the set will produce that object only once. あなたがある与えられたオブジェクトを計数集合に複数回加えるならば、その集合のある列挙はそのオブジェクトをただ一度だけ生み出します。
You shouldn’t modify the set during enumeration. If you intend to modify the set, use the all
method to create a “snapshot,” then enumerate the snapshot and modify the original set.
あなたは、列挙の間にその集合を修正すべきではありません。あなたがその集合を修正するつもりならば、all
メソッドを使って “スナップショット” を作成してください、それからスナップショットを列挙して、元の集合を修正してください。
- countForObject:
- nextObject