【发布时间】:2020-05-11 00:59:35
【问题描述】:
如果我使用下面的代码请求对警报和声音的本地通知进行授权,则用户可以在授予授权后进入设置关闭横幅和声音。授权仍然存在,但不会有发送通知的方法。如何检查是否启用了特定类型的通知(例如警报)?
@objc func registerLocal() {
let center = UNUserNotificationCenter.current()
center.requestAuthorization(options: [.alert, .sound]) { (granted, error) in
if granted {
self.notificationsAuth = true
} else {
self.notificationsAuth = false
}
self.notificationAuthUndertermined = false
}
}
【问题讨论】: