允许或不允许 iPhone 应用程序中的 Apple 推送通知的警报
我在我的应用程序中使用 Apple 推送通知。
当我的应用程序安装在设备上时,我希望应用程序询问用户是否允许应用程序使用通知,我该如何实现? 像这个应用程序一样。
谢谢。
I am using Apple Push Notification in my application.
when my application is installed on device i want application to ask user if they want allow application to use notification or not, how can i implement so?
something like this application.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不需要为此做任何额外的工作。只需配置您的应用程序以进行推送通知和呼叫:
You don't need to do any extra work for that. Just configure your app for push notifications and call:
当应用程序要求自身注册推送通知时,这种情况会自动发生,就像应用程序首次请求设备位置时一样。除了您必须进行的
-registerForRemoteNotificationTypes:
调用(如 Max 提到的)之外,您不需要执行任何特殊操作。This happens automatically when an app asks to register itself for push notifications, just as it does when an app first asks for the device's location. You don't need to do anything special beyond the
-registerForRemoteNotificationTypes:
call (as Max mentioned) which you have to make anyway.