比较 NSDate 中的时间
我试图比较两个 NSDate 对象的时间,但得到了错误的答案。我认为这是因为在使用 NSDate 比较方法时它还包括日期。我只想忽略日期并比较时间。这怎么能做到呢?
I am trying to compare the time from two NSDate objects but am getting the wrong answer. I think it is because when using the NSDate compare methods it is also including the date. I just want to ignore the date and compare the times. How can this be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,你总是可以使用 NSCalendar 的
- (NSDate *)dateFromComponents:(NSDateComponents *)comps
well, you can always use NSCalendar's
- (NSDate *)dateFromComponents:(NSDateComponents *)comps