iPhone:存储和显示推送通知
在我的 iPhone 应用程序中,我想存储设备接收到的所有推送通知,然后将其显示在表格中。
我还想在应用程序图标上显示到目前为止收到的通知数量。
这可能吗?
有人可以帮忙吗?
谢谢。
In my iphone application, I want to store all the push notifications that a device receives and then display it in table.
I also want to show the number of notifications received till now on application icon.
Is this possible?
Can anyone please help?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法存储推送通知。您的应用程序已关闭,操作系统会收到通知,如果用户按“确定”按钮,操作系统将打开您的应用程序。
您可以做的是将所有通知保留在服务器上,并在应用程序打开时将本地数据与服务器数据同步。
You can not store push notification. Your app is closed and the notification are received by the os, if the user press ok button the os will open your application.
What you can do is to keep all the notification on your server and when the app is open sync your local data with the server data.