allKeys |
- (id <ECIterator>) allKeys
close |
closes this dictionary. After this call the dictionary may not be used any more
- (void) close;
objectForKey: |
returns the object for the given key
- objectForKey: (id <NSCoding>) aKey;
aKey
- underlying key
removeObjectForKey: |
Remove the object associated with the given key. Does nothing if no object exists for the given key.
- removeObjectForKey: (id <NSCoding>) aKey;
aKey
- related key
setObject |
adds an object to the dictionary. Replaces an existing one if there is one already defined for the given key
See Also:
- setObject:forKey:
- setObject: (id <NSCoding>) anObject forKey: (id <NSCoding>) aKey;
anObject
- object to add
aKey
- underlying key
setObject:forKey: |
adds an object to the dictionary. Replaces an existing one if there is one already defined for the given key
See Also:
- setObject
- setObject: (id <NSCoding>) anObject forKey: (id <NSCoding>) aKey;
anObject
- object to add
aKey
- underlying key
(Last Updated August 27, 2006)