#import <OrderedDictionary.h>
Public Member Functions | |
(id) | - keyAtIndex: |
(id) | - objectAtIndex: |
(NSEnumerator *) | - reverseKeyEnumerator |
(NSEnumerator *) | - reverseObjectEnumerator |
(void) | - insertObject:forKey:atIndex: |
(void) | - removeObjectAtIndex: |
Ordered subclass of NSMutableDictionary. Has exactly the same methods as MutableOrderedDictionary, but is a subclass of NSMutableDictionary instead of OrderedDictionary.
- (void) insertObject: | (id) | object | ||
forKey: | (id) | key | ||
atIndex: | (NSUInteger) | index | ||
Inserts an object at a specific index in dictionary.
- (id) keyAtIndex: | (NSUInteger) | index |
Returns the nth key in the dictionary.
- (id) objectAtIndex: | (NSUInteger) | index |
Returns the nth object in the dictionary.
- (void) removeObjectAtIndex: | (NSUInteger) | index |
Removes the nth object in the dictionary.
- (NSEnumerator *) reverseKeyEnumerator |
Returns an enumerator for backwards traversal of the dictionary keys.
- (NSEnumerator *) reverseObjectEnumerator |
Returns an enumerator for backwards traversal of the dictionary objects.