我试图解决我的问题并遇到this,但解决方案中提供的链接已被删除。
答案 0 :(得分:1)
如果您专门尝试阅读通知设置和选项,则可以使用此功能。然后,如果他们想要更改它们,您可以自己直接将它们带到设置应用程序。
UNUserNotificationCenter.current().getNotificationSettings(){ (settings) in
switch settings.soundSetting{
case .enabled:
print("setting enabled")
case .disabled:
print("setting has been disabled")
case .notSupported:
print("somethings wrong here")
}
}