本文介绍了iOS从当前日期起一个月。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想从当前日期起一个月。
I'm trying to get one month from the current date.
以下是我所拥有的,并返回: 4027-09 -24 16:59:00 +0000
。 currentDate是正确的。这是怎么回事?
Below is what I have and it is returning: 4027-09-24 16:59:00 +0000
. currentDate is right. What's going on?
// Get todays date to set the monthly subscription expiration date
NSDate *currentDate = [NSDate date];
NSLog(@"Current Date = %@", currentDate);
NSDateComponents *dateComponents = [[NSCalendar currentCalendar] components:NSMonthCalendarUnit | NSDayCalendarUnit | NSYearCalendarUnit fromDate:currentDate];
dateComponents.month = dateComponents.month + 1;
NSDate *currentDatePlus1Month = [[NSCalendar currentCalendar] dateByAddingComponents:dateComponents toDate:currentDate options:0];
NSLog(@"Date = %@", currentDatePlus1Month);
推荐答案
请尝试:
// Get todays date to set the monthly subscription expiration date
NSDate *currentDate = [NSDate date];
NSLog(@"Current Date = %@", currentDate);
NSDateComponents *dateComponents = [NSDateComponents new];
dateComponents.month = 1;
NSDate *currentDatePlus1Month = [[NSCalendar currentCalendar] dateByAddingComponents:dateComponents toDate:currentDate options:0];
NSLog(@"Date = %@", currentDatePlus1Month);
这篇关于iOS从当前日期起一个月。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!