2012-02-22 1 views
0

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

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

ローカル通知が何回発せられますか?

答えて

0

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

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

関連する問題