显示数字键盘
textfields 有一个委托方法来显示数字键盘。类似于我想在单击按钮时显示它。可以吗?由于我的应用程序处理电话,我想拨打未存储在地址簿中的号码......
There is delegate method for textfeilds to display the number pad . Similar to that I want to display it when clicking a button.Is it possible?? Since my app deals with phone calls,I want to make a call to the number which is not stored in address book...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您指的是
UITextField
。它符合UITextInputTraits
协议,因此您可以将其keyboardType
属性设置为UIKeyboardTypePhonePad
。示例:
参考: UITextField类参考
I'm assuming you mean
UITextField
. It conforms to theUITextInputTraits
protocol so you can set itskeyboardType
property toUIKeyboardTypePhonePad
.Example:
Reference: UITextField Class Reference