func array(forKey : String) -> [Any]?
Returns the array associated with the specified key.
指定されたキーと結びつけられた配列を返します。
func bool(forKey : String) -> Bool
Returns the Boolean value associated with the specified key.
指定されたキーと結びつけられたブール値を返します。
func data(forKey : String) -> Data?
Returns the data object associated with the specified key.
指定されたキーと結びつけられたデータオブジェクトを返します。
func dictionary(forKey : String) -> [String : Any]?
Returns the dictionary object associated with the specified key.
指定されたキーと結びつけられた辞書オブジェクトを返します。
func double(forKey : String) -> Double
Returns the double value associated with the specified key.
指定されたキーと結びつけられたdouble値を返します。
func object(forKey : String) -> Any?
Returns the object associated with the specified key.
指定されたキーと結びつけられたオブジェクトを返します。
func string(forKey : String) -> String?
Returns the string associated with the specified key.
指定されたキーと結びつけられた文字列を返します。