比较系统时间和NSDatePicker时间
我必须比较系统时间和 NSDatePicker 字段中选择的时间。如果它们相等则需要执行一些操作。比较时间的最佳方法是什么?
I have to compare the system time and the time chosen in NSDatePicker field. If they are equal need to do some actions. What is the best way to compare the time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这从字面上回答了您的问题:
但这不是一种很可能的情况,因为
isEqualToDate
是 亚秒级精确,因此用户不太可能选择确切的日期/摆弄 NSDatePicker 时的时间。你到底想做什么?This answers your question literally:
But that's not a very likely situation because
isEqualToDate
is sub-second precise, so it's not likely a user will choose the exact date/time when fiddling with an NSDatePicker. What exactly are you trying to do?