Instance Method インスタンスメソッド

localizedString(forCountryCode:)

Returns the localized string for a country or region code. ある国名コードまたはリージョン(地域)コードに対するローカライズされた文字列を返します。

Declaration 宣言

func localizedString(forCountryCode countryCode: String) -> String?

Parameters パラメータ

countryCode

The code of the country or region that indicates the name you want. あなたが望む名前を指し示す国名コードまたはリージョンコード。

Return Value 戻り値

The localized name of the country or region. 国名またはリージョンのローカライズされた名前。

Discussion 議論

For example, calling this method on an American English (en_US) locale, passing "GB" for countryCode, produces the string "United Kingdom". 例えば、このメソッドをアメリカ英語(en_US)ロケール上で、"GB"countryCodeに渡して呼び出すことは、文字列"United Kingdom"を生成します。

This method is equivalent to calling the displayName(forKey:value:) method passing the countryCode key and countryCode value. このメソッドは、displayName(forKey:value:)メソッドをcountryCodeキーとcountryCode値を渡して呼び出すことに等しいです。

See Also 参照

Getting Display Information About a Locale あるロケールについての表示情報を取得する

Related Documentation 関連文書