I make a application in which i need to show a 30 min countdown timer,after 30 min i need to show that coupons is expired.It work fine.
{
NSInteger seconds = [[NSDate date] timeIntervalSinceDate:dateDue];
}
But if somebody change the mobile date or time, the timer is disturb and it show wrong values.So is this any way to find current date and time without using [NSDate date] so i use it for my countdown timer.Please give your suggestion..