NSDate 1 年前
考虑开始日期和结束日期:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想说你想看看
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, theNSDataComponents
instance would have ayear
of -1.