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.
iOS 通知是否有两个单独的权限,即本地和推送?应用程序是否可能会要求这两种权限?
我在问,因为我发现了两条不同的消息:
如果有两个权限,可能的情况是什么。
如果您想集成对推送通知的支持,请通过接受推送通知来授予权限。
但是,如果您想集成对本地通知的支持,那么您已经接受了。
在 iOS 8 之后,本地通知需要获得用户的许可。
在 iOS 8.0 及更高版本中,您的应用程序必须使用 -[UIApplication registerUserNotificationSettings:] 注册用户通知,然后才能安排和呈现 UILocalNotifications。