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