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

dateIntervalOfWeekend(containing:start:interval:)

Find the range of the weekend around the given date, returned via two by-reference parameters. 与えられた日付の辺りの週末の範囲を見つけます、2つの参照渡しパラメータ経由で返されます。

Declaration 宣言

func dateIntervalOfWeekend(containing date: Date, start: inout Date, interval: inout TimeInterval) -> Bool

Parameters パラメータ

date

The date at which to start the search. そこで検索を開始するところの日付。

start

When the result is true, set 結果がtrueがある場合、設定されます

Return Value 戻り値

true if a date range could be found, and false if the date is not in a weekend. ある日付が見つけられたならばtrue、そしてその日付が週末の中にないならばfalse

Discussion 議論

Note that a given entire day within a calendar is not necessarily all in a weekend or not; weekends can start in the middle of a day in some calendars and locales. カレンダー内の与えられたある1日全体は、必ずしも週末の中に全てあるか否かではありません;週末は、いくつかのカレンダーとロケールにおいて1日の真ん中で始まることがあります。

See Also 参照

Calculating Intervals 隔たりを計算する

Related Documentation 関連文書

dateIntervalOfWeekend(containing:)