func object(forKey : String) -> Any?
Returns the object associated with the specified key.
指定されたキーと結びつけられたオブジェクトを返します。
func url(forKey : String) -> URL?
Returns the URL associated with the specified key.
指定されたキーと結びつけられたURLを返します。
func array(forKey : String) -> [Any]?
Returns the array associated with the specified key.
指定されたキーと結びつけられた配列を返します。
func dictionary(forKey : String) -> [String : Any]?
Returns the dictionary object associated with the specified key.
指定されたキーと結びつけられた辞書オブジェクトを返します。
func string(forKey : String) -> String?
Returns the string associated with the specified key.
指定されたキーと結びつけられた文字列を返します。
func stringArray (forKey : String) -> [String]?
Returns the array of strings associated with the specified key.
この指定されたキーと結びつけられた、文字列それらからなる配列を返します。
func bool(forKey : String) -> Bool
Returns the Boolean value associated with the specified key.
指定されたキーと結びつけられたブール値を返します。
func integer(forKey : String) -> Int
Returns the integer value associated with the specified key.
指定されたキーと結びつけられた整数値を返します。
func float(forKey : String) -> Float
Returns the float value associated with the specified key.
指定されたキーと結びつけられたfloat値を返します。
func double(forKey : String) -> Double
Returns the double value associated with the specified key.
指定されたキーと結びつけられたdouble値を返します。
func dictionaryRepresentation () -> [String : Any]
Returns a dictionary that contains a union of all key-value pairs in the domains in the search list.
ある辞書を返します、それは検索リストの中のドメインそれらの中の全てのキー値ペアの和集合を返します。