Framework | /System/Library/Frameworks/AppKit.framework |
Availability | Available in Mac OS X v10.5 and later. |
Companion guide | |
Declared in | NSDictionaryController.h |
NSDictionaryControllerKeyValuePair
is an informal protocol that is implemented by objects returned by the NSDictionaryController
method arrangedObjects
. See NSDictionaryController Class Reference for more information.
Specifies whether the receiver’s key name is an included key.
- (BOOL)isExplicitlyIncluded
YES
if the key name is specified as an included key, otherwise NO
.
NSDictionaryController.h
Returns the receiver’s key name.
- (NSString *)key
The key name.
NSDictionaryController.h
Returns the receiver’s localized key name.
- (NSString *)localizedKey
The localized key name.
NSDictionaryController.h
Sets the key name for the receiver.
- (void)setKey:(NSString *)key
The key name.
NSDictionaryController.h
Sets the localized key name for the receiver.
- (void)setLocalizedKey:(NSString *)localizedKey
The localized name of the receivers key.
NSDictionaryController.h
Sets the receiver’s value.
- (void)setValue:(id)value
An object.
NSDictionaryController.h
Returns the receiver’s value.
- (id)value
The receiver’s value object.
NSDictionaryController.h
© 2008 Apple Inc. All Rights Reserved. (Last updated: 2008-06-05)