通话时不显示号码 - iPhone 应用程序开发

发布于 2025-01-07 06:46:08 字数 150 浏览 0 评论 0原文

我在我的应用程序中创建了一个选项卡,用户可以在其中直接从应用程序内调用客户端。

但我不会显示他的号码,我想显示:“你想给客户打电话吗?” 我在另一个应用程序中看到了这个解决方案,而不是“你想拨打 000-000-000 吗”

,但不知道如何做到这一点。

I have created a tab in my app, where the user could call the client directly from within the app.

But I wont show his number, i want to display: "Do you want to call Client?" instead of "Do you want to call 000-000-000"

I've seen this solution in another app, but dont have a clue how to do this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

做个ˇ局外人 2025-01-14 06:46:08

openURL 调用不会自动提示用户输入任何内容。

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:7205551212"]];

与用户确认是一个很好的做法,但消息由您决定。要显示警报,请执行以下操作:

UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Confirmation" message:@"Do you want to call Client?" delegate:self cancelButtonTitle:@"No" otherButtonTitles:@"Yes", nil];
[alertView show];
[alertView release];

然后在 UIAlertViewDelegate 方法中拨打实际电话:

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
    if (buttonIndex == 1) {
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:7205551212"]];
    }
}

The openURL call does not automatically prompt the user for anything.

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:7205551212"]];

It's good practice to confirm with the user, but it's up to you to determine the message. To show the alert, do something like this:

UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Confirmation" message:@"Do you want to call Client?" delegate:self cancelButtonTitle:@"No" otherButtonTitles:@"Yes", nil];
[alertView show];
[alertView release];

Then make the actual phone call in a UIAlertViewDelegate method:

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
    if (buttonIndex == 1) {
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:7205551212"]];
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文