我正在创建一个闹钟应用。我想要用户设置时间和本地通知。为此,我使用以下代码: -
UILocalNotification *localNotif = [[UILocalNotification alloc] init];
if (localNotif == nil)
return;
localNotif.fireDate = _datePicker.date;
localNotif.timeZone = [NSTimeZone defaultTimeZone];
localNotif.alertBody = @"This is the Alert-Body Text";
localNotif.alertAction = @"Button-Text";
localNotif.soundName = UILocalNotificationDefaultSoundName;
localNotif.applicationIconBadgeNumber = 1;
localNotif.repeatInterval = NSDayCalendarUnit;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];
但问题是通知只出现一次,我如何设置多次本地通知,以便每次发出警报。