func setObject (Any, forKey : NSCopying)
func setValue (Any?, forKey : String)
func setDictionary ([AnyHashable : Any])
Availability 有効性
Technology
func addEntries(from otherDictionary: [AnyHashable
: Any])
otherDictionary
The dictionary from which to add entries この辞書からの登録項目を加えます。
Each value object from other
is sent a retain
message before being added to the receiving dictionary. In contrast, each key object is copied (using copy(with:)
—keys must conform to the NSCopying
protocol), and the copy is added to the receiving dictionary.
other
からの各値オブジェクトは、retain
メッセージを、受け手側辞書に加えられる前に送られます。対照的に、各値オブジェクトは(copy(with:)
を使って — キーはNSCopying
プロトコルに準拠しなければなりません)コピーされます、そしてそのコピーは受け手側辞書に加えられます。
If both dictionaries contain the same key, the receiving dictionary’s previous value object for that key is sent a release
message, and the new value object takes its place.
両方の辞書が同じキーを含むならば、受け手側の辞書のもつそのキーに対する以前の値オブジェクトは、release
メッセージを送られます、そして新しい値オブジェクトがその場所を占めます。
func setObject (Any, forKey : NSCopying)
func setValue (Any?, forKey : String)
func setDictionary ([AnyHashable : Any])