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