收到推送通知后如何拨打电话?
我开发了一个预约应用程序。当我收到推送通知时,我想给特定的人打电话,但现在我只是在收到推送通知时打开应用程序。
当我收到特定约会的推送通知时,如何编写代码来拨打该约会的电话?
I have developed an appointment application. When I receive a push notification, I want to make a call to a particular person, but right now it is just opening the application when I get a push notification.
How do I write a code to make a call to a particular appointment as I get the push notification of that appointment?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于推送通知,您必须在 appDelegate 中编码,
对于本地通知,
For push notification you have to code in appDelegate,
For local notification,
收到通知后,使用给定的电话号码打开拨号器应用程序。注意:这将首先启动您的应用程序,然后快速切换到拨号器。
Upon notification, open the dialer app with the given phone number. Note: this will initially launch your app, then quickly switch to the dialer.