在 iOS 中使用按钮拨打电话号码

发布于 2024-11-09 02:00:42 字数 94 浏览 5 评论 0原文

我想创建一个按钮,按下该按钮即可拨打 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

忆梦 2024-11-16 02:00:42

在按钮操作中尝试一下

-(IBAction)callPhone:(id)sender {
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://1115550123"]];
}

。然后在 Interface Builder 中,您应该将 TouchUpInside 事件连接到之前声明的操作 (callPhone:),然后就完成了。

Try this out in your button action

-(IBAction)callPhone:(id)sender {
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://1115550123"]];
}

Then in Interface Builder you should connect the TouchUpInside event to the previously declared action (callPhone:) and you are done.

浅笑轻吟梦一曲 2024-11-16 02:00:42

您还可以在通话结束后返回原来的应用程序,只需使用此应用程序即可:

-(IBAction)callPhone:(id)sender {
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt://2135554321"]];
}

享受!

You can also go back to your original app when finish the call just by using this one instead:

-(IBAction)callPhone:(id)sender {
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt://2135554321"]];
}

Enjoy!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文