如何使用 NSCalendar 或 NSDate 生成 30 天的数组?
我正在尝试创建一个 30 天的数组,考虑到夏令时、闰年等。我目前有一个生成器,可以生成一系列天数,但它没有考虑特殊的时间变化和年份,月份变化。这是我当前的代码:
NSMutableArray* dates = [[NSMutableArray alloc] init];
int numberOfDays=30;
NSDate *startDate=[NSDate date];
NSDate *tempDate=[startDate copy];
for (int i=0;i<numberOfDays;i++) {
NSLog(@"%@",tempDate.description);
tempDate=[tempDate dateByAddingTimeInterval:(60*60*24)];
[dates addObject:tempDate.description];
}
NSLog(@"%@",dates);
创建一个生成器来循环日历以检索从今天的日期开始的接下来 30 天的最佳方法是什么,并且数组应包含今天的日期和接下来的 29 天。我当前的代码就像我说的那样工作,但并不完全准确。谢谢
I'm trying to create an array of 30 days that takes in consideration of daylight savings time, leap year, and etc. I currently have a generator that makes an array of days but It's not taking in consideration of special time changes and year, month changes. Here's my current code:
NSMutableArray* dates = [[NSMutableArray alloc] init];
int numberOfDays=30;
NSDate *startDate=[NSDate date];
NSDate *tempDate=[startDate copy];
for (int i=0;i<numberOfDays;i++) {
NSLog(@"%@",tempDate.description);
tempDate=[tempDate dateByAddingTimeInterval:(60*60*24)];
[dates addObject:tempDate.description];
}
NSLog(@"%@",dates);
What's the best way to create a generator to loop through the calendar to retrieve the next 30 days starting from today's date and the array should include today's date and the next 29 days. My current code works like I said but it's not totally accurate. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你差不多已经明白了;只需进行一些修改:
这将创建一个 NSDate 对象数组。在我的机器上,此日志记录:
请注意 3 月 13 日时区偏移量如何从
-0800
更改为-0700
。那是夏令时。 :)You've almost got it; just a couple modifications:
This will create an array of
NSDate
objects. On my machine, this logs:Note how the timezone offset changes on March 13th from
-0800
to-0700
. That's daylight savings time. :)我上面的旁注的一些代码:
some code for my sidenote above: