更改 iPhone SDK 中的徽章和推送通知
我尝试了 推送通知教程 。它工作正常,但问题是徽章。当我单击视图时,会出现应用程序并将其关闭。它在应用程序图标中仍然是红色徽章。如何去除它?
另一个问题是
当我单击视图时,它将出现主屏幕。我想在来自推送通知时显示其他视图。
I tried the push notification tutorial . It's working fine but problem is badge. When I click on the view, app is appear and the close it. it still red badge in app icon. How to remove it ?
Another question is
when I click the view, it will appear home screen. I want to show other view when coming from push notification.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将重置应用程序徽章编号。如果将该值设置为零,它将隐藏徽章。
要使用单独的视图处理推送通知,您需要在应用程序委托中处理以下消息:
您可以访问userInfo字典以获取有关导致消息回调的推送通知的更多信息。
This will reset the application badge number. If you set that value to zero, it will hide the badge.
To handle your push notification with a separate view, you need to handle the following message in your application delegate:
You can access the userInfo dictionary to get additional information about the push notification that resulted in the message callback.