Hi Guys, How can i get next date using NSDate. Please send me the solution.
regards Jayaraj
|
|
Hi Guys, How can i get next date using NSDate. Please send me the solution. regards Jayaraj
|
||
|
|
|
|
In the following, yourDate represents your input NSDate; nextDate represents the next day.
|
||
|
|
//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; |
||
|