gpt4 book ai didi

ios - 通话时不显示号码 - iPhone App Development

转载 作者:行者123 更新时间:2023-11-28 20:39:04 25 4
gpt4 key购买 nike

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

但我不会显示他的电话号码,我想显示:“Do you want to call Client?”而不是“你想调用 000-000-000 吗”

我在另一个应用程序中看到过这个解决方案,但不知道如何执行此操作。

最佳答案

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"]];
}
}

关于ios - 通话时不显示号码 - iPhone App Development,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9335312/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com