在文本字段中获取电话号码,以便在按下按钮时拨打电话

发布于 2024-11-28 09:25:16 字数 109 浏览 2 评论 0原文

该应用程序只是想让用户在文本字段中输入电话号码,然后当点击按钮时,它会拨打该号码。最好的代码是什么?我已经在我的 nib 文件中创建了一个按钮和一个文本字段。

我正在使用 Xcode 4。

The application simply wants to make a user input a phone number in a text field and then when a button is tapped, it'll call that number. What's the best code for this? I have already created a button and a textfield in my nib file.

I'm using Xcode 4.

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

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

发布评论

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

评论(2

陌若浮生 2024-12-05 09:25:16
-(IBAction)numberButtonPressed:(UIButton *)pressedButton
{

    self.phoneNumberLabel.text = [self.phoneNumberLabel.text stringByAppendingString: pressedButton.titleLabel.text];

}

您可以在这里查看图例:
http:// /mobile.tutsplus.com/tutorials/iphone/design-build-a-1980s-ios-phone-app-making-phone-calls/

-(IBAction)numberButtonPressed:(UIButton *)pressedButton
{

    self.phoneNumberLabel.text = [self.phoneNumberLabel.text stringByAppendingString: pressedButton.titleLabel.text];

}

You can take a look at turorial here:
http://mobile.tutsplus.com/tutorials/iphone/design-build-a-1980s-ios-phone-app-making-phone-calls/

农村范ル 2024-12-05 09:25:16

此处向您展示了如何操作。只需将 NSMutableString 电话转到您的文本字段(通过使用 yourTextField.text

Here shows you how to do it. Just make the NSMutableString phone go to your text field (by using yourTextField.text)

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