我有以下if语句
if ([date compare:self.appLaunchDate] == NSOrderedDescending || [date compare:self.appLaunchDate] == NSOrderedSame)
和过滤的日期都大于appLaunchDate。
事情是有一些日期具有相同的分钟值,但没有通过if语句。
如何获得大于或等于appLaunchDate的日期?
e.g。 date to check is: 2012-09-07 12:13:29 +0000 - date of launch is 2012-09-07 12:13:25 +0000
这应该允许日期检查在launchdate之后传递,但由于某种原因它没有通过if语句。