func setValue (Any?, forKeyPath : String)
Sets the value for the property identified by a given key path to a given value.
func setValuesForKeys ([String : Any])
Sets properties of the receiver with values from a given dictionary, using its keys to identify the properties.
func setNilValueForKey (String)
Invoked by
setValue(_:forKey:)
when it’s given a nil
value for a scalar value (such as an int
or float
).func setValue (Any?, forUndefinedKey : String)
Invoked by
setValue(_:forKey:)
when it finds no property for a given key.