objectEnumerator()
Returns an enumerator object that lets you access each value in the map table.
Declaration
func objectEnumerator() -> NSEnumerator?Return Value
An enumerator object that lets you access each value in the map table.
Discussion
The following code fragment illustrates how you might use the method.
NSEnumerator *enumerator = [myMapTable objectEnumerator];
id value;
while ((value = [enumerator nextObject])) {
/* code that acts on the map table's values */
}Special Considerations
It is more efficient to use the fast enumeration protocol (see NSFastEnumeration).