Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序是否可以通过设备上的“设置”确定推送通知是否被禁用?我不是在谈论检查feedback.push.apple.com。我只是想知道设置中的开关是设置为开还是关。
feedback.push.apple.com
您可以使用
[[UIApplication sharedApplication] enabledRemoteNotificationTypes]
如果返回UIRemoteNotificationTypeNone的值等于 value 0,则应用程序不接受任何通知。希望这对您有所帮助。
UIRemoteNotificationTypeNone
0
您可以使用 了解为您的应用启用了哪种通知[[UIApplication sharedApplication] enabledRemoteNotificationTypes]。