需要检查当前时间间隔是否位于目标 c 中的开始时间和结束时间之间
我想知道当前时间是否存在于开始时间和输入之间,两者(开始时间和结束时间)都是静态的。像这样假设我当前时间是上午 10:15,开始时间是上午 9:15,结束时间是上午 11:00。所以这应该是函数应该返回一个 BOOL 值,在这种情况下是 yes,现在假设我当前时间是 12:00 AM 那么函数应该返回一个 bool 值 NO。所以我对如何创建这样一个函数(方法)来实现上述技巧感到困惑。请注意,开始时间和结束时间为同一天。
I want to know whether the current time is present between the start time and the enter, both (start-time and end-time) are static. Something like this suppose my current time is 10:15 AM the start time is 9:15AM and End time is 11:00 AM. So this should be the function should return me A BOOL value that is in this case is yes, now suppose my current time is 12:00 AM then the function should return me a bool value NO. So I am in confusion about how to create such a function (method) which will do the above trick. Note the start time and end time will be for the same day.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
NSDate 具有执行此操作所需的所有功能。查看文档。
NSDate has all the functions you need to do this. Check out the documentation.