keyEnumeratorReturns an enumerator object that lets you access each key in the receiver.- (NSEnumerator *)keyEnumeratorReturn ValueAn enumerator object that lets you access each key in the receiver.DiscussionThe following code fragment illustrates how you might use this method.NSEnumerator *enumerator = [myDictionary keyEnumerator];id key;while ((key = [enumerator nextObject])) { /* code that uses the returned key */}