Instance Property
インスタンスプロパティ
localeIdentifier
The identifier for the locale.
このロケールに対する識別子。
Declaration
宣言
@property (readonly, copy) NSString
*localeIdentifier ;
Discussion
議論
Examples of locale identifiers include "en_GB"
, "es_ES_PREEURO"
, and "zh-Hant_HK_POSIX@collation=pinyin;currency=CNY"
.
ロケール識別子の例は、"en_GB"
、"es_ES_PREEURO"
、そして"zh-Hant_HK_POSIX@collation=pinyin;currency=CNY"
があります。
Use localizedString(forIdentifier:)
to obtain a version of the value suitable for display to the user.
localizedString(forIdentifier:)
を使って、ユーザに表示するのに適した、この値の別形式を入手してください。
Note
注意
The value held in the property may differ from the identifier used to initialize the locale because NSLocale
may canonicalize it during initialization.
プロパティの中に保持された値は、ロケールを初期化するのに使われた識別子と異なるかもしれません、なぜならNSLocale
がそれを初期化の間に正準化するかもしれないからです。
This property contains the same value returned by the objectForKey:
method when passing the NSLocaleIdentifier
key.
このプロパティは、objectForKey:
メソッドにNSLocaleIdentifier
キーを渡す場合に返されるのと同じ値を含みます。
See Also
参照
Getting Information About a Locale
ロケールについての情報を取得する
countryCode
The country or region code for the locale.
このロケールに対する国名コードまたはリージョンコード。
languageCode
The language code for the locale.
このロケールに対する言語コード。
scriptCode
The script code for the locale.
このロケールに対する書体コード。
variantCode
The variant code for the locale.
このロケールに対する変種コード。
usesMetricSystem
A Boolean value that indicates whether the locale uses the metric system.
そのロケールがメートル法を使うかどうかを指し示すブール値。
currencyCode
The currency code for the locale.
このロケールに対する通貨コード。
Related Documentation
関連文書