通过推送通知在指定页面打开应用程序
我正在寻找一种在推送通知指向的页面上打开应用程序的方法。 有没有办法查看启动应用程序时是否收到任何推送通知?
提前致谢
I am looking for a way to open an app on the page a pushnotification is pointing to.
Is there a way to see if I have received any push notification when starting my app?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查
application:didFinishLaunchingWithOptions:
中给出的 launchOptions-Dictionary 中的启动选项键UIApplicationLaunchOptionsRemoteNotificationKey
和UIApplicationLaunchOptionsLocalNotificationKey
。Check for the launch option keys
UIApplicationLaunchOptionsRemoteNotificationKey
andUIApplicationLaunchOptionsLocalNotificationKey
in the launchOptions-Dictionary given inapplication:didFinishLaunchingWithOptions:
.