- setObject:forKey:
- setValue:forKey:
- addEntriesFromDictionary:
- setDictionary:
Availability 有効性
Technology
- (void)setObject:(ObjectType )obj
forKeyedSubscript:(id<NSCopying
>)key;
object
The value for a
. A strong reference to the object is maintained by the dictionary.
a
に対する値。オブジェクトへの強い参照は、辞書によって保守されます。
Passing nil
will cause any object corresponding to a
to be removed from the dictionary.
nil
を渡すことは、a
に対応している何らかのオブジェクトが辞書から取り除かれるようにします。
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
であるならば。
This method has the same behavior as the set
method.
このメソッドはset
と同じ挙動を持ちます。
You shouldn’t need to call this method directly. Instead, this method is called when setting an object for a key using subscripting. あなたは、このメソッドを直接呼び出す必要はないはずです。その代わりに、このメソッドはあるオブジェクトがキーによる添え字を使って設定される時に呼び出されます。
- setObject:forKey:
- setValue:forKey:
- addEntriesFromDictionary:
- setDictionary:
- removeObjectForKey:
- objectForKeyedSubscript: