How can i get next date using NSDate? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T21:28:31Zhttp://stackoverflow.com/feeds/question/1081689http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081689/how-can-i-get-next-date-using-nsdate0How can i get next date using NSDate?Jayaraj2009-07-04T06:52:51Z2009-07-06T04:51:27Z
<p>Hi Guys,
How can i get next date using NSDate. Please send me the solution.</p>
<p>regards
Jayaraj</p>
http://stackoverflow.com/questions/1081689/how-can-i-get-next-date-using-nsdate/1081711#10817113Answer by unforgiven for How can i get next date using NSDate?unforgiven2009-07-04T07:07:20Z2009-07-04T07:07:20Z<p>In the following, yourDate represents your input NSDate; nextDate represents the next day. </p>
<pre><code>// start by retrieving day, weekday, month and year components for yourDate
NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *todayComponents = [gregorian components:(NSDayCalendarUnit | NSMonthCalendarUnit | NSYearCalendarUnit) yourDate];
NSInteger theDay = [todayComponents day];
NSInteger theMonth = [todayComponents month];
NSInteger theYear = [todayComponents year];
// now build a NSDate object for yourDate using these components
NSDateComponents *components = [[NSDateComponents alloc] init];
[components setDay:theDay];
[components setMonth:theMonth];
[components setYear:theYear];
NSDate *thisDate = [gregorian dateFromComponents:components];
[components release];
// now build a NSDate object for the next day
NSDateComponents *offsetComponents = [[NSDateComponents alloc] init];
[offsetComponents setDay:1];
NSDate *nextDate = [gregorian dateByAddingComponents:offsetComponents toDate: yourDate options:0];
[offsetComponents release];
[gregorian release];
</code></pre>
http://stackoverflow.com/questions/1081689/how-can-i-get-next-date-using-nsdate/1085476#10854760Answer by Jayaraj for How can i get next date using NSDate?Jayaraj2009-07-06T04:51:27Z2009-07-06T04:51:27Z<p>//Add the below code to init method or viewDidload
[[NSUserDefaults standardUserDefaults] setObject:[NSDate date] forKey:@"Date"];</p>
<p>//Add this code where you wanna retrieve next or previous dates
NSDate *tomorrow = [[NSUserDefaults standardUserDefaults] valueForKey:@"Date"];
NSTimeInterval secondsPerDay = 24 * 60 * 60;<br />
NSDate *date = [tomorrow addTimeInterval:secondsPerDay]; //Change NSDate *date = [tomorrow addTimeInterval:-secondsPerDay]; for yesterday
tomorrow = date;
[self setDate:tomorrow];
dateTextField.text = [self getDate];
[[NSUserDefaults standardUserDefaults] setObject:tomorrow forKey:@"Date"]; </p>