0

通知を設定するときにローカル通知を送信する必要がある通知アプリケーションを開発したいと思います。私は複数の通知を設定しても1つの通知だけをトリガするコードを開発しました。リマインダを午後7:30、午後7:31、午後7:32に設定すると、通知は午後7時32分にのみ表示されます。iOS - 複数のローカル通知をスケジュールする、UNCalenderNotificationTrigger

は、ここに私のコード

func scheduleNotification(at date: Date) { 
    let calendar = Calendar(identifier: .gregorian) 
    let components = calendar.dateComponents(in: .current, from: date) 
    let newComponents = DateComponents(calendar: calendar, timeZone: .current, month: components.month, day: components.day, hour: components.hour, minute: components.minute) 
    let trigger = UNCalendarNotificationTrigger(dateMatching: newComponents, repeats: true) 
    let content = UNMutableNotificationContent() 
    content.title = "Reminder" 
    content.body = "To day is the last date for the payment of your card. Please make payment today." 
    content.sound = UNNotificationSound.default() 
    content.categoryIdentifier = "PaymentReminderIdentifier" 
    let request = UNNotificationRequest(identifier: "ReminderNotification", content: content, trigger: trigger) 
    UNUserNotificationCenter.current().delegate = self 
    //UNUserNotificationCenter.current().removeAllPendingNotificationRequests() 
    UNUserNotificationCenter.current().add(request) {(error) in 
     if let error = error { 
      print("Uh oh! We had an error: \(error)") 
     } 
    } 
} 

です//

func notif() { 
    let selectedDate = fullDate 
    print("Selected date: \(selectedDate)") 
    let delegate = UIApplication.shared.delegate as? AppDelegate 
    delegate?.scheduleNotification(at: selectedDate!) 
} 

私はリマインダーを作成するときに通知を毎回お届けしたいです。 この問題の解決にお手伝いします。ありがとうございます...

答えて

2

毎回異なる識別子を使用してください。それは動作します

関連する問題