#import <OrderedDictionary.h>
Public Member Functions | |
(void) | - insertObject:forKey:atIndex: |
(void) | - removeObjectAtIndex: |
Mutable subclass of OrderedDictionary. Supports all the same methods as NSMutableDictionary, plus a few new methods for operating on entities by index rather than key. Note that although it has the same interface, MutableOrderedDictionary is not a subclass of NSMutableDictionary, and cannot be used as one without generating compiler warnings. Use OrderedMutableDictionary instead if you need this functionality.
- (void) insertObject: | (id) | object | ||
forKey: | (id) | key | ||
atIndex: | (NSUInteger) | index | ||
Inserts an object at a specific index in dictionary.
- (void) removeObjectAtIndex: | (NSUInteger) | index |
Removes the nth object in the dictionary.