Type Method 型メソッド

localizedString(from:dateStyle:timeStyle:)

Returns a string representation of a specified date, that the system formats for the current locale using the specified date and time styles. 指定された日付の文字列表現を返します、それはシステムが現在のロケールに対してその指定された日付と時刻のスタイルを使って書式設定します。

Declaration 宣言

class func localizedString(from date: Date, 
                 dateStyle dstyle: DateFormatter.Style, 
                 timeStyle tstyle: DateFormatter.Style) -> String

Parameters パラメータ

date

A date. ある日付。

dateStyle

A format style for the date. For possible values, see DateFormatter.Style. 日付に対する書式設定スタイル。可能な値としては、DateFormatter.Styleを見てください。

timeStyle

A format style for the time. For possible values, see DateFormatter.Style. 時刻に対する書式設定スタイル。可能な値としては、DateFormatter.Styleを見てください。

Return Value 戻り値

A localized string representation of date using the specified date and time styles. 指定された日付と時刻スタイルを使っているdateのローカライズされた文字列表現。

Discussion 議論

This method uses a date formatter configured with the current default settings. The returned string is the same as if you configured and used a date formatter as shown in the following example: このメソッドは、現在の省略時設定で構成設定された日付フォーマッタを使います。返される文字列は、あなたが日付フォーマッタを以下の例において示すように構成設定して使用した場合と同じです:


let formatter = DateFormatter()
formatter.formatterBehavior = .behavior10_4
formatter.dateStyle = dateStyle
formatter.timeStyle = timeStyle
let result = formatter.string(from: date)

See Also 参照

Converting Objects オブジェクト変換