Type Method 型メソッド

localeIdentifierFromComponents:

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

Declaration 宣言

+ (NSString *)localeIdentifierFromComponents:(NSDictionary<NSString *,NSString *> *)dict;

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 componentsFromLocaleIdentifier:, so for example the dictionary {NSLocaleLanguageCode="en", NSLocaleCountryCode="US", NSLocaleCalendar=NSJapaneseCalendar} becomes "en_US@calendar=japanese". これはcomponentsFromLocaleIdentifier:の動作の逆です、それで例えば辞書{NSLocaleLanguageCode="en", NSLocaleCountryCode="US", NSLocaleCalendar=NSJapaneseCalendar}"en_US@calendar=japanese"になります。

See Also 参照

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

Related Documentation 関連文書