func compare(Date, to: Date, toGranularity : Calendar.Component) -> ComparisonResult
Compares two dates down to the specified component.
指定された構成要素へと至るまで2つの日付を比較します。
func isDate (Date, equalTo : Date, toGranularity : Calendar.Component) -> Bool
Returns a Boolean value indicating whether two dates are equal down to the specified component.
指定された構成要素へと至るまで2つの日付が等しいかどうかを指し示すブール値を返します。
func isDate (Date, inSameDayAs : Date) -> Bool
Returns a Boolean value indicating whether a date is within the same day as another date.
ある日付が別の日付と同じ日にちの内であるかどうかを指し示すブール値を返します。
func isDateInToday (Date) -> Bool
Returns a Boolean value indicating whether the given date is within today.
与えられた日付が今日の内であるかどうかを指し示すブール値を返します。
func isDateInTomorrow (Date) -> Bool
Returns a Boolean value indicating whether the given date is within tomorrow.
与えられた日付が明日の内であるかどうかを指し示すブール値を返します。
func isDateInWeekend (Date) -> Bool
Returns a Boolean value indicating whether the given date is within a weekend period.
与えられた日付が週末期間の内であるかどうかを指し示すブール値を返します。