Type Method 型メソッド

localeIdentifier(fromComponents:)

Returns a locale identifier from the components specified in a given dictionary. ある与えられた辞書において指定される構成要素それらからあるロケール識別子を返します。

Declaration 宣言

class func localeIdentifier(fromComponents dict: [String : String]) -> String

Parameters パラメータ

dict

A dictionary containing components that specify a locale. For possible values, see NSLocale Component Keys. あるロケールを指定する構成要素いくつかを含んでいる辞書。可能な値として、NSLocale Component Keysを見てください。

Return Value 戻り値

A locale identifier created from the components specified in dict. dictの中で指定される構成要素から作成されるロケール識別子。

Discussion 議論

This reverses the actions of components(fromLocaleIdentifier:), so for example the dictionary {NSLocaleLanguageCode="en", NSLocaleCountryCode="US", NSLocaleCalendar=NSJapaneseCalendar} becomes "en_US@calendar=japanese". これはcomponents(fromLocaleIdentifier:)の動作の逆です、それで例えば辞書{NSLocaleLanguageCode="en", NSLocaleCountryCode="US", NSLocaleCalendar=NSJapaneseCalendar}"en_US@calendar=japanese"になります。

See Also 参照

Converting Between Identifiers 識別子間で変換する

Related Documentation 関連文書