Разница между NSWeekCalendarUnit и NSWeekDayCalendarUnit для UILocalNotification repeatInterva - PullRequest
0 голосов
/ 22 февраля 2012

В чем разница между NSWeekCalendarUnit и NSWeekDayCalendarUnit для UILocalNotification repeatInterval?

localNotification = [[UILocalNotification alloc]init];
NSDate *currDate1 = [defaults objectForKey:@"Default_AlarmTime"];
localNotification.fireDate = currDate1;
localNotification.alertBody = @"Alarm";
localNotification.alertAction = @"View";
localNotification.soundName = UILocalNotificationDefaultSoundName;
localNotification.timeZone = [NSTimeZone defaultTimeZone];
localNotification.repeatInterval = NSWeekdayCalendarUnit;
[[UIApplication sharedApplication]scheduleLocalNotification:localNotification];

Сколько раз срабатывает локальное уведомление?

1 Ответ

0 голосов
/ 24 февраля 2012

Если вы установите NSWeekdayCalendarUnit для свойства repeatInterval, то он будет вызываться ежедневно.

Если вы установите NSWeekCalendarUnit для свойства repeatInterval, то он будет вызываться еженедельно.

...