I have a datePicker and I want to use it as a timer. The timer should send a notification when the time is over. But i don't know how to do this, because it only works when I use the picker as a "date collector".
NSDate *date = [self.datePicker date];
...
UILocalNotification* localNotification = [[UILocalNotification alloc] init];
localNotification.fireDate = date;
But how should i rewrite this for a datePicker with "Count Down Timer" mode? Thanks for your response ;)