0

UILocalNotification repeatInterval の NSWeekCalendarUnit と NSWeekDayCalendarUnit の違いは何ですか?

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];

ローカル通知は何回発生しますか?

4

1 に答える 1

0

repeatInterval プロパティに NSWeekdayCalendarUnit を設定すると、毎日呼び出されます。

repeatInterval プロパティに NSWeekCalendarUnit を設定すると、毎週呼び出されます。

于 2012-02-24T09:13:59.990 に答える