如何查看通知的应用设置?

时间:2015-09-26 10:17:41

标签: ios swift notifications

这是我感兴趣的:

enter image description here

如何在代码中访问该代码,尤其是设置了哪种警报样式?

1 个答案:

答案 0 :(得分:1)

您可以使用currentUserNotificationSettings方法:

UIApplication.sharedApplication().currentUserNotificationSettings()

它将返回UIUserNotificationSettings对象。

查看UIApplication Class Reference了解详情。