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

isDateInWeekend(_:)

Indicates whether a given date falls within a weekend period, as defined by the calendar and the calendar's locale. そのカレンダーとカレンダーのロケールによって定義されるとき、与えられた日付がある週末期間内に収まるかどうかを指し示します。

Declaration 宣言

func isDateInWeekend(_ date: Date) -> Bool

Parameters パラメータ

date

The date for which to perform the calculation. それに対して計算を実行することになる日付。

Return Value 戻り値

true if the given date is within a weekend period, otherwise false. true、もし与えられた日付が週末期間内ならば、そうでなければfalse

Discussion 議論

If the date does fall within a weekend, you can use the range(ofWeekendStart:interval:containing:) method to determine the start date of that weekend period. Otherwise, you can use the nextWeekendStart(_:interval:options:after:) method to determine the start date of the next or previous weekend. 日付が週末に収まるならば、あなたはrange(ofWeekendStart:interval:containing:)メソッドを使ってその週末期間の開始日付を決定できます。そうでなければ、あなたはnextWeekendStart(_:interval:options:after:)メソッドを使って次または前の週末の開始日付を決定できます。

See Also 参照

Comparing Dates 日付を比較する