Como definir um NSCalendarUnitMinute repeatInterval no iOS 10 UserNotifications?

Em UILocalNotification, usamosNSCalendarUnitMinute como repetição ... mas não consigo encontrar no iOS 10Documento UserNotification ... Como posso usarNSCalendarUnitMinute como repetição no iOS 10UserNotification?

aqui está o código que agendará a notificação local às 20:30 e se repetirá a cada minuto.

UILocalNotification* localNotification = [[UILocalNotification alloc] init];
localNotification.fireDate = pickerDate;
localNotification.alertBody = self.textField.text;
localNotification.timeZone = [NSTimeZone defaultTimeZone];
localNotification.repeatInterval = NSCalendarUnitMinute;
localNotification.applicationIconBadgeNumber = [[UIApplication sharedApplication] applicationIconBadgeNumber] + 1;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];

questionAnswers(3)

yourAnswerToTheQuestion