将当前时间与固定时间 05:00:00 PM 进行比较
我如何将当前时间 [NSDate date] 与固定时间 05:00:00 PM 进行比较。
那个 05:00 PM 是否已经过去了。我只需要 BOOL 检查这个。
How will I compare current time [NSDate date] with fixed time 05:00:00 PM.
That 05:00 PM is already passed or not. I just need BOOL check for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个
Try this
您可以使用纯 C 风格代码并以整数形式获取差异,然后根据差异是正数还是负数决定需要从比较函数返回什么。您也可以通过这种方式比较分钟数。不要忘记导入 time.h。
You can probably use plain C style code and get the difference as an integer and then decide what you need to return from the comparison function depending on wether the difference is positive or negative. You can compare minutes this way as well. Dont forget to import time.h.