func set(Float, forKey : String)
func set(Double, forKey : String)
func set(Int, forKey : String)
func set(Bool, forKey : String)
func set(URL?, forKey : String)
Availability 有効性
Technology
func set(_ value: Any?,
forKey defaultName: String
)
value
The object to store in the defaults database. defaultsデータベースに格納するオブジェクト。
defaultName
The key with which to associate the value. それと値を結びつけることになるキー。
The value
parameter can be only property list objects: NSData, NSString
, NSNumber
, NSDate
, NSArray
, or NSDictionary
. For NSArray
and NSDictionary
objects, their contents must be property list objects. For more information, see What is a Property List? in Property List Programming Guide.
value
パラメータは、プロパティリストオブジェクトのみであることができます:NSData、NSString
、NSNumber
、NSDate
、NSArray
、またはNSDictionary
。NSArray
とNSDictionary
オブジェクトに対して、それらの内容はプロパティリストオブジェクトでなければなりません。さらなる情報として、What is a Property List?をProperty List Programming Guideにおいて見てください。
Setting a default has no effect on the value returned by the object(for
method if the same key exists in a domain that precedes the application domain in the search list.
あるdefaultを設定することは、object(for
メソッドによって返される値に影響を及ぼしません、もし検索リストにおいてアプリケーションドメインより前にあるドメインに同じキーが存在するならば。
func set(Float, forKey : String)
func set(Double, forKey : String)
func set(Int, forKey : String)
func set(Bool, forKey : String)
func set(URL?, forKey : String)
func removeObject (forKey : String)