在 iOS 中使用按钮拨打电话号码
我想创建一个按钮,按下该按钮即可拨打 iPhone 上的电话号码。我不知道这是否可能,但如果是的话,我希望有人能帮助我。
我没有任何代码,所以需要有人从头到尾帮助我。
I want to create a button that, when pressed, will call a phone number on the iPhone. I don't know if this is possible, but if it is I'd love for someone to help me with this.
I dont have any code for it, so someone would need to help me from start to finish.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在按钮操作中尝试一下
。然后在 Interface Builder 中,您应该将
TouchUpInside
事件连接到之前声明的操作 (callPhone:
),然后就完成了。Try this out in your button action
Then in Interface Builder you should connect the
TouchUpInside
event to the previously declared action (callPhone:
) and you are done.您还可以在通话结束后返回原来的应用程序,只需使用此应用程序即可:
享受!
You can also go back to your original app when finish the call just by using this one instead:
Enjoy!