i want to get time from datePicker into NSDate object, and then to run a method every day in this time.
for example:
the user put in the datePicker the tome 08:00 and every day in 08:00 the application will run some method.
Thank you very much,
Amir Foghel
To get the time from datepicker use ,
To do a functionality at particular time daily use UILocalNotification.
Set the repeatInterval as NSDayCalendarUnit.
And in the delegate to handling the UILocalNotification code your method.
NOTE: This method will be execute only when the user accepts the Local notification.