NSMutableDictionary

class NSMutableDictionary : NSDictionary
  • Changes the value of the given setting to the specified object.

    Declaration

    Swift

    public func set(value: Any, named name: String)

    Parameters

    value

    The new value for the setting.

    name

    The name of the setting whose value is to be changed.

  • Removes the existing value (if any) for the setting with the given name.

    Declaration

    Swift

    public func removeValue(named name: String)

    Parameters

    name

    The name of the setting whose value is to be removed.