views:

35

answers:

1

How can I tell what options I have for objectForKey: calls? How do I know what values are non-null for the 'forKey' portion of the message?

+5  A: 

NSArray * keys = [myDictionary allKeys];

Dave DeLong