对于推送通知:如何向警报视图添加操作以更改视图?
所以我有推送通知发送到我的应用程序。
触发警报的代码位于我的应用程序委托文件中(我认为这就是它应该去的地方?)
如何为我的警报按钮执行操作,以便我可以更改为不同的视图?
So I have push notifications sending to my application.
The code that triggers the alert is in my app delegate file (I think thats where it is supposed to go?)
How do I make an action for my alert button so that I can change to a different view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要更改按钮的标题,请使用通知字典中的
action-loc-key
键(请参阅 本节指南)。要在点击通知时执行某些操作,您可以在应用程序委托中实现一些方法: 处理通知。
To change the title of the button, use the
action-loc-key
key in the notification dictionary (see this section of the guide).To do something when the notification is tapped, you can implement a few methods in your app delegate: Handling notifications.