Enumeration 列挙

NSDateComponentsFormatterUnitsStyle

Constants for specifying how to represent quantities of time. 時間量をどうやって表すか指定するための定数。

Declaration 宣言

typedef enum NSDateComponentsFormatterUnitsStyle : NSInteger {
    ...
} NSDateComponentsFormatterUnitsStyle;

Overview 概要

All date and time values are localized and formatted according to the current user’s language preferences. 全ての日付と時刻値は、現在のユーザの言語環境設定によってローカライズおよび書式設定されます。

The following table shows how the quantity of 9 hours, 41 minutes, and 30 seconds is displayed in the U.S. 以下の表は、どのように9時間、41分、そして30秒の量がU.Sにおいて表示されるかを示します。 English locale for each style:

Style スタイル

Displayed result 表示結果

NSDateComponentsFormatterUnitsStyleSpellOut

“nine hours, forty-one minutes, thirty seconds”

NSDateComponentsFormatterUnitsStyleFull

“9 hours, 41 minutes, 30 seconds”

NSDateComponentsFormatterUnitsStyleShort

“9 hr, 41 min, 30 sec”

NSDateComponentsFormatterUnitsStyleBrief

“9hr 41min 30sec”

NSDateComponentsFormatterUnitsStyleAbbreviated

“9h 41m 30s”

NSDateComponentsFormatterUnitsStylePositional

“9:31:30”

Topics 話題

Styles スタイル