NSDate 1 年前

发布于 2024-10-12 19:16:06 字数 492 浏览 3 评论 0原文

考虑开始日期和结束日期:

NSDate *startDate, *endDate;

例如,startDate 可能是 2010 年 12 月 10 日,endDate 可能是 2011 年 1 月 4 日。

考虑从 2010 年 12 月 10 日到 2011 年 1 月 4 日的天数跨度。

我如何确定日期范围在相同的天数范围内,但恰好是一年前。我希望它考虑到闰年。所以我无法简单地从每个日期中减去 365 天。

我想结束:

NSDate *oneYearAgoStartDate, *oneYearAgoEndDate.

所以也许在这种情况下,oneYearAgoStartDate 将是 2009 年 12 月 10 日,oneYearAgoEndDate 将是 2010 年 1 月 4 日(请注意,我尚未确认这一点)。

我如何初始化这两个变量来实现我所需要的。

Consider a start date and an end date:

NSDate *startDate, *endDate;

For example, startDate could be Dec 10, 2010 and endDate could be Jan 4, 2011.

Consider the span of days from Dec 10, 2010 to Jan 4, 2011.

How could I determine the date range over that same span of days but exactly 1 year ago. And I'd like it to take into consideration leap years. So I'm unable to simply subtract 365 days from each date.

I'd like to end up with:

NSDate *oneYearAgoStartDate, *oneYearAgoEndDate.

So maybe in this case, oneYearAgoStartDate would be Dec 10, 2009 and oneYearAgoEndDate would be Jan 4, 2010 (note that I haven't confirmed this).

How could I initialize these two variables to achieve what I need.

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

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

发布评论

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

评论(1

夏见 2024-10-19 19:16:06

我想说你想看看 NSCalendar,特别是方法-dateByAddingComponents:toDate:options:。在您的实例中, NSDataComponents 实例的年份为-1。

I'd say you want to take a look at NSCalendar, specifically the method -dateByAddingComponents:toDate:options:. In your instance, the NSDataComponents instance would have a year of -1.

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