在文本字段中获取电话号码,以便在按下按钮时拨打电话
该应用程序只是想让用户在文本字段中输入电话号码,然后当点击按钮时,它会拨打该号码。最好的代码是什么?我已经在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在这里查看图例:
http:// /mobile.tutsplus.com/tutorials/iphone/design-build-a-1980s-ios-phone-app-making-phone-calls/
You can take a look at turorial here:
http://mobile.tutsplus.com/tutorials/iphone/design-build-a-1980s-ios-phone-app-making-phone-calls/
此处向您展示了如何操作。只需将 NSMutableString 电话转到您的文本字段(通过使用
yourTextField.text
)Here shows you how to do it. Just make the NSMutableString phone go to your text field (by using
yourTextField.text
)