通话时不显示号码 - iPhone 应用程序开发
我在我的应用程序中创建了一个选项卡,用户可以在其中直接从应用程序内调用客户端。
但我不会显示他的号码,我想显示:“你想给客户打电话吗?” 我在另一个应用程序中看到了这个解决方案,而不是“你想拨打 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
openURL 调用不会自动提示用户输入任何内容。
与用户确认是一个很好的做法,但消息由您决定。要显示警报,请执行以下操作:
然后在 UIAlertViewDelegate 方法中拨打实际电话:
The openURL call does not automatically prompt the user for anything.
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:
Then make the actual phone call in a UIAlertViewDelegate method: