I can get current date of iphone via this code as
NSDate *currentDate = [NSDate date]; NSDateFormatter *dateFormatter1 = [[NSDateFormatter alloc] init]; [da
You can use dateByAddingTimeInterval.
NSDate *currentDate = [NSDate date]; NSDate *datePlusOneMinute = [currentDate dateByAddingTimeInterval:60]; //60 seconds