- setObject:forKeyedSubscript:
- setValue:forKey:
- addEntriesFromDictionary:
- setDictionary:
Availability 有効性
Technology
- (void)setObject:(ObjectType )anObject
forKey:(id<NSCopying
>)aKey;
anObject
The value for a
. A strong reference to the object is maintained by the dictionary.
a
に対する値。オブジェクトへの強い参照は、辞書によって保守されます。
Important 重要
Raises an NSInvalid
if an
is nil
. If you need to represent a nil
value in the dictionary, use NSNull
.
NSInvalid
を引き起こします、もしan
がnil
ならば。あなたがnil
値を辞書において表す必要があるならば、NSNull
を使ってください。
aKey
The key for value
. The key is copied (using copy
; keys must conform to the NSCopying
protocol). If a
already exists in the dictionary, an
takes its place.
value
に対するキー。キーはコピーされます(copy
を使って;キーはNSCopying
プロトコルに準拠しなければなりません)。a
が既に辞書の中の存在するならば、an
がそれの場所を占めます。
Important 重要
Raises an NSInvalid
if a
is nil
.
NSInvalid
を引き起こします、もしa
がnil
であるならば。
- setObject:forKeyedSubscript:
- setValue:forKey:
- addEntriesFromDictionary:
- setDictionary:
- removeObjectForKey: