var allKeys : [Any]
A new array containing the dictionary’s keys, or an empty array if the dictionary has no entries.
辞書のもつキーそれらを含んでいる新しい配列、または辞書が登録項目を持たないならば空の配列。
var allValues : [Any]
A new array containing the dictionary’s values, or an empty array if the dictionary has no entries.
辞書の持つ値それらを含んでいる新しい配列、または辞書が登録項目を持たないならば空の配列。
func value(forKey : String) -> Any?
Returns the value associated with a given key.
与えられたキーと結びつけられた値を返します。
func objects(forKeys : [Any], notFoundMarker : Any) -> [Any]
Returns as a static array the set of objects from the dictionary that corresponds to the specified keys.
この指定されたキーそれらに対応する、その辞書からのオブジェクト一揃いを、静的配列として返します。
func object(forKey : Any) -> Any?
Returns the value associated with a given key.
与えられたキーと結びつけられた値を返します。
subscript(NSCopying) -> Any?
Returns the value associated with a given key.
与えられたキーと結びつけられた値を返します。
subscript(Any) -> Any?
Accesses the value associated with a given key.
与えられたキーと結びつけられた値にアクセスします。