我想将以下代码更改为UNUserNotification格式。我可以将其更改为正确的格式。任何人都可以帮助我吗?
UILocalNotification* localNotification = [[UILocalNotification alloc] init];
bool neverRepeats = true;
for(id key in _repeatDays) {
if([[_repeatDays objectForKey:key] boolValue]) {
neverRepeats = false;
localNotification.fireDate = _alarmTime;
localNotification.alertBody = @"Title";
localNotification.timeZone = [NSTimeZone systemTimeZone];
localNotification.alertAction = @"I'm up, I'm up!";
localNotification.repeatInterval = NSWeekCalendarUnit;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
}
}
if(neverRepeats) {
if([_alarmTime earlierDate:today] == today) {
localNotification.fireDate = _alarmTime;
localNotification.alertBody = @"Title";
localNotification.timeZone = [NSTimeZone systemTimeZone];
localNotification.alertAction = @"I'm up, I'm up!";
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
}
}