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
、もしanotherDate
がNSDate
オブジェクトでありそして正確にレシーバと等しいならば、そうでなければ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
日付を比較する
- earlierDate:
Returns the earlier of the receiver and another given date.
レシーバと別の与えられた日付のより前のものを返します。
- laterDate:
Returns the later of the receiver and another given date.
レシーバと別の与えられた日付のより後のものを返します。
- compare:
Indicates the temporal ordering of the receiver and another given date.
レシーバと別の与えられた日付の時間的順序を指し示します。
Related Documentation
関連文書
- isEqual:
Returns a Boolean value that indicates whether the receiver and a given object are equal.
レシーバと与えられたオブジェクトが等しいかどうかを指し示すブール値を返します。