NSDictionary
$Revision$
$Date$
NSDictionary
Foundation/NSDictionary.h
NSCoding, NSCopying, NSMutableCopying
allocWithZone:
zone
dictionary
Returns an empty dictionary.
dictionaryWithContentsOfFile:
path
Returns a dictionary using the file located at path.
The file must be a property list containing a dictionary as its root object.
dictionaryWithDictionary:
otherDictionary
Returns a newly created dictionary with the keys and objects of otherDictionary.
(The keys and objects are not copied.)
dictionaryWithObject:
anObject
forKey:
aKey
Returns a dictionary containing only one object (anObject) which is associated with aKey.
dictionaryWithObjects:
objects
forKey:
keys
Returns a dictionary created using the given objects and keys.
The two arrays must have the same size.
The n th element of the objects array is associated with the n th element of the keys array.
dictionaryWithObjects:
objects
forKeys:
keys
count:
count
Returns a dictionary created using the C arrays objects and keys.
The number of elements in both C arrays must be count.
dictionaryWithObjectsAndKeys:
object, ...
Returns a dictionary created using the list given as argument.
The list is alernately composed of objects and keys.
Thus, the list's length must be pair.
allKeys
Returns an array containing all the dictionary's keys.
allKeysForObject:
anObject
Returns an array containing all the dictionary's keys that are associated with anObject.
allValues
Returns an array containing all the dictionary's objects.
count
Returns an unsigned integer which is the number of elements stored in the dictionary.
descriptionInStringsFileFormat
descriptionWithLocale:
locale
descriptionWithLocale:
locale
fileGroupOwnerAccountName
fileModificationDate
fileOwnerAccountName
filePosixPermissions
fileSize
fileSystemFileNumber
fileSystemNumber
fileType
initWithContentsOfFile:
path
see dictionaryWithContentOfFile:
initWithDictionary:
otherDictionary
See dictionaryWithDictionary:
initWithObjects:
objects
See [dictionaryWithObjects:]
initWithObjects:
objects
forKeys:
keys
count:
count
see dictionaryWithObjects: forKeys: count:
initWithObjectsAndKeys:
object,
see dictionaryWithObjectsAndKeys:
isEqualToDictionary:
otherDictionary
keyEnumerator
Return an enumerator object containing all the keys of the dictionary.
keysSortedByValueUsingSelector:
comparator
objectEnumerator
Return an enumerator object containing all the keys of the dictionary.
objectForKey:
aKey
Returns the first object which has aKey as key.
objectsForKeys:
keys
notFoundMarker:
anObject
writeToFile:
path
atomically:
flag
writeToURL:
url
atomically:
flag