Как настроить UILocatNotification каждый день в 9 утра - PullRequest
0 голосов
/ 21 мая 2011

Мне нужно настроить UILocatNotification каждый день в 9 утра.Любая помощь будет оценена.

1 Ответ

2 голосов
/ 21 мая 2011
[formatter setDateFormat:[NSDateFormatter dateFormatFromTemplate:@"yyyy-MM-dd HH:mm:ss" 
                                                         options:0
                                                          locale:nil]];
[formatter setTimeZone:[NSTimeZone localTimeZone]];

notification.fireDate = [formatter dateFromString:@"2010-10-21 09:00:00"];
notification.repeatInterval = NSDayCalendarUnit;
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...