我是iOS编程的新手,想知道我们是否可以使用swift检查哪些通知在iOS中处于活动状态。 已经有一个问题How to check which notifications are active in status bar in Android Dev? 在android上,但我专注于iOS。 有人可以帮我吗?
答案 0 :(得分:0)
尝试执行此操作以使所有通知在iOS的通知托盘中处于活动状态。
UNUserNotificationCenter.current().getDeliveredNotifications { (notifications) in
print(notifications)
}