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

second()

Modifies the date interval format style to include the seconds. 日付間隔書式設定スタイルを修正して、秒を含むようにします。

Declaration 宣言

func second() -> Date.IntervalFormatStyle

Return Value 戻り値

A date interval format style that includes the seconds. ある日付間隔書式設定スタイル、それは秒を含みます。

Discussion 議論

This example shows a combination of date interval format styles that include the hour, minutes, and seconds: この例は、時間、分、そして秒を含む日付間隔書式設定スタイルの組み合わせを示します:


if let today = Calendar.current.date(byAdding: .day, value: -140, to: Date()),
   let sevenDaysBeforeToday = Calendar.current.date(byAdding: .day, value: -7, to: today) {


    // Create a Range<Date>.
    let weekBefore = sevenDaysBeforeToday..<today


    print(weekBefore.formatted(.interval.minute()))
    print(weekBefore.formatted(.interval.day().minute().hour().second()))
}
// 2/5/2021, 17 – 2/12/2021, 17
// 5, 8:17:19 AM – 12, 8:17:19 AM

See Also 参照

Modifying Date Interval Format Styles 日付間隔書式設定スタイルを修正する