获取时间相关数据,其中包括当前时间

发布于 2024-11-10 07:59:22 字数 176 浏览 0 评论 0原文

我存储了数据,实体的一个属性是 startTime,它存储为 NSNumber (NSTimeInterval),另一个属性存储为项目的 duration

我将如何获取对“现在”有效的单个项目 - 即开始时间+持续时间包括当前时间([NSDate date])的项目?

I have data stored where one of the entity's attributes is startTime which is stores as an NSNumber (NSTimeInterval) and another attribute with the item's duration.

How would I go about fetching the single item which is valid for "now" - i.e. teh item who's start time + duration includes the current time ([NSDate date])?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

戒ㄋ 2024-11-17 07:59:22

看看这个问题:NSPredicate syntax for DATEADD?

Have a look at this SO question: NSPredicate syntax for DATEADD?

三生路 2024-11-17 07:59:22

您需要使用 NSDateFormatter 获取当前时间/日期,然后使用 NSDateComponents 将其分解为小时/分钟/秒(根据需要)。

然后增加你的开始时间和持续时间。

然后使用组件创建一个新的 NSDate 这将是您的结果。

You need to use an NSDateFormatter to grab the current time/date and then use NSDateComponents to break this into hours/mins/seconds (as required).

Then increment your startTime and duration onto it.

Then use the components to create a new NSDate which will be your result.

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