Updates the value stored in the dictionary for the given key, or adds a new key-value pair if the key does not exist.
SDK
- Xcode 10.2+
Framework
- Swift Standard Library
Declaration
Parameters
value
The new value to add to the dictionary.
key
The key to associate with
value
. Ifkey
already exists in the dictionary,value
replaces the existing associated value. Ifkey
isn’t already a key of the dictionary, the(key, value)
pair is added.
Return Value
The value that was replaced, or nil
if a new key-value pair was added.
Discussion
Use this method instead of key-based subscripting when you need to know whether the new value supplants the value of an existing key. If the value of an existing key is updated, update
returns the original value.
If the given key is not present in the dictionary, this method adds the key-value pair and returns nil
.