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

isDate(_:equalTo:toGranularity:)

Returns a Boolean value indicating whether two dates are equal down to the specified component. 指定された構成要素へと至るまで2つの日付が等しいかどうかを指し示すブール値を返します。

Declaration 宣言

func isDate(_ date1: Date, equalTo date2: Date, toGranularity component: Calendar.Component) -> Bool

Parameters パラメータ

date1

A date to compare. 比較する日付。

date2

A date to compare. 比較する日付。

component

A granularity to compare. For example, pass .hour to check if two dates are in the same hour. 比較する粒度。例えば、.hourを渡して、2つの日付が同じ時間であるか調べてください。

Return Value 戻り値

true if the two dates are equal in the given component and all larger components; otherwise, false. 与えられた構成要素そして全てのより大きい構成要素において2つの日付が等しいならばtrue;そうでなければ、false

See Also 参照

Comparing Dates 日付を比較する