比较系统时间和NSDatePicker时间

发布于 2024-11-04 11:58:10 字数 69 浏览 1 评论 0原文

我必须比较系统时间和 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

∞梦里开花 2024-11-11 11:58:10

这从字面上回答了您的问题:

NSDate *currentDate = [NSDate date];
NSDate *pickerDate = [pickerDate date]; // where pickerDate is your NSDatePicker object

if ([currentDate isEqualToDate:pickerDate]) {
    // do stuff
}

但这不是一种很可能的情况,因为 isEqualToDate亚秒级精确,因此用户不太可能选择确切的日期/摆弄 NSDatePicker 时的时间。你到底想做什么?

This answers your question literally:

NSDate *currentDate = [NSDate date];
NSDate *pickerDate = [pickerDate date]; // where pickerDate is your NSDatePicker object

if ([currentDate isEqualToDate:pickerDate]) {
    // do stuff
}

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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文