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

isEqualToDate:

Returns a Boolean value that indicates whether a given object is a date that is exactly equal the receiver. 与えられたオブジェクトがレシーバと正確に等しい日付であるかどうかを指し示すブール値を返します。

Declaration 宣言

- (BOOL)isEqualToDate:(NSDate *)otherDate;

Parameters パラメータ

anotherDate

The date to compare with the receiver. レシーバと比較する日付。

Return Value 戻り値

YES if the anotherDate is an NSDate object and is exactly equal to the receiver, otherwise NO. YES、もしanotherDateNSDateオブジェクトでありそして正確にレシーバと等しいならば、そうでなければNO

Discussion 議論

This method detects sub-second differences between dates. If you want to compare dates with a less fine granularity, use timeIntervalSinceDate: to compare the two dates. このメソッドは、日付間の秒未満の差異を検知します。あなたが一層小さい精細粒度で日付を比較したいならば、timeIntervalSinceDate:を使って2つの日付を比較してください。

See Also 参照

Comparing Dates 日付を比較する

Related Documentation 関連文書