vote up 0 vote down star

Hi Guys, How can i get next date using NSDate. Please send me the solution.

regards Jayaraj

flag

0% accept rate

2 Answers

vote up 0 vote down

//Add the below code to init method or viewDidload [[NSUserDefaults standardUserDefaults] setObject:[NSDate date] forKey:@"Date"];

//Add this code where you wanna retrieve next or previous dates NSDate *tomorrow = [[NSUserDefaults standardUserDefaults] valueForKey:@"Date"]; NSTimeInterval secondsPerDay = 24 * 60 * 60;
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"];

link|flag
Cave: Repeatedly adding secondsPerDay (24 * 60 * 60) with addTimeInterval to an NSDate is done while observing daylight saving time. Adding 24 hours on a day when you enter or leave daylight savin time skews the time of day by +/- 1 hour. – Niels Castle Oct 30 at 8:18
vote up 3 vote down

In the following, yourDate represents your input NSDate; nextDate represents the next day.

// 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];
link|flag
Hi, Yeah this code's working Thanks a lot, Do you have any idea about how to get previous day(yesterday)? – Jayaraj Jul 4 at 9:33
Changing [offsetComponents setDay:1] to be setDay:-1 results in subtracting a day instead of adding – rpetrich Jul 4 at 12:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.