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

localizedString(fromTimeInterval:)

Formats the specified time interval using the formatter’s calendar. 指定された時間間隔をフォーマッタのもつカレンダーを使って書式設定します。

Declaration 宣言

func localizedString(fromTimeInterval timeInterval: TimeInterval) -> String

Parameters パラメータ

timeInterval

The time interval to format. 書式設定する時間間隔。

Return Value 戻り値

A string that represents the formatted time interval. ある文字列、それは書式設定された時間間隔を表します。

Discussion 議論

The formatter interprets a negative time interval as a date in the past. フォーマッタは、負の時間間隔を過去の日付として解釈します。


let formatter = RelativeDateTimeFormatter()
print(formatter.localizedString(fromTimeInterval: -120))
// Outputs:  2 minutes ago

See Also 参照

Converting Dates to Formatted Strings 日付それらを書式設定された文字列へと変換する