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

isDateInWeekend:

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

Declaration 宣言

- (BOOL)isDateInWeekend:(NSDate *)date;

Parameters パラメータ

date

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

Return Value 戻り値

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

Discussion 議論

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

See Also 参照

Comparing Dates 日付を比較する