Enumeration
列挙
NSNumberFormatterStyle
The predefined number format styles used by the numberStyle
property.
numberStyle
プロパティによって使われるあらかじめ定義された数値書式設定形式。
Declaration
宣言
typedef enum NSNumberFormatterStyle : NSUInteger
{
...
} NSNumberFormatterStyle ;
Overview
概要
Table 1 provides examples of each formatting style for the U.S., France, and China.
表 1 は、U.S.、フランス、そして中国に対する各書式設定の例を提供します。
Table 1 Examples of formatting styles for different locales
表 1 異なるロケールに対する書式設定スタイル(様式)の例
Style
スタイル
en_US Locale
fr_FR Locale
zh_CN Locale
NSNumberFormatterNoStyle
1235
1235
1235
NSNumberFormatterDecimalStyle
1,234.568
1 234,568
1,234.568
NSNumberFormatterPercentStyle
12%
12 %
12%
NSNumberFormatterScientificStyle
1.2345678E3
1,2345678E3
1.2345678E3
NSNumberFormatterSpellOutStyle
one hundred twenty-three
cent vingt-trois
一百二十三
NSNumberFormatterOrdinalStyle
3rd
3e
第3
NSNumberFormatterCurrencyStyle
$1,234.57
1 234,57 €
¥1,234.57
NSNumberFormatterCurrencyAccountingStyle
($1,234.57)
(1 234,57 €)
(¥1,234.57)
NSNumberFormatterCurrencyISOCodeStyle
USD1,234.57
1 234,57 EUR
CNY1,234.57
NSNumberFormatterCurrencyPluralStyle
1,234.57 US dollars
1 234,57 euros
1,234.57人民币
Topics
話題
Formatting Styles
書式設定様式
NSNumberFormatterSpellOutStyle
A style format in which numbers are spelled out in the language defined by the number formatter locale.
ある様式書式設定、それで数値フォーマッタロケールによって定義される言語において数値が完全に綴られます
NSNumberFormatterCurrencyStyle
A currency style format that uses the currency symbol defined by the number formatter locale.
ある通貨様式書式設定、それは数値フォーマッタロケールによって定義される通貨表象を使います。
NSNumberFormatterCurrencyISOCodeStyle
A currency style format that uses the ISO 4217 currency code defined by the number formatter locale.
ある通貨様式書式設定、それは数値フォーマッタロケールによって定義されるISO 4217通貨コードを使います。
NSNumberFormatterCurrencyPluralStyle
A currency style format that uses the pluralized denomination defined by the number formatter locale.
ある通貨様式書式設定、それは数値フォーマッタロケールによって定義される複数形単位を使います。