Solution Code:
let center = UNUserNotificationCenter.current() print(center.getPendingNotificationRequests(completionHandler: { error in // error handling here }))
My original post:
I am trying to get a list of pending notifications through the UNUserNotificationCenter, since UIApplication.shared.scheduledLocalNotifications been discounted.
This is the code I'm using:
let center = UNUserNotificationCenter.current() print(UNUserNotificationCenter.getPendingNotificationRequests(center))
However, it prints "(Function)". getPendingNotificationRequests requires the UNUserNotificationCenter parameter, and I can't think about what else could be.
thanks
source share