带有数字和默认键盘的 UITextField
为“邮政编码/邮政编码”字段创建了一个 UITextField,其键盘类型为 UIKeyboardTypeDefault。我想使用默认键盘,但想要数字和数字默认情况下与字母相对应显示的符号。
当您在 Contacts.app 中输入地址时,Apple 会执行此操作。
有人知道如何实现这一目标吗?
Created a UITextField for "Postal Code/ZIP" field with a keyboardType of UIKeyboardTypeDefault. I would like to use the default keyboard but want the numbers & symbols to be shown by default as apposed to letters.
Apple does this when you are entering addresses in the Contacts.app.
Anyone know how to get this accomplished?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要
UIKeyboardTypeNumbersAndPunctuation
键盘类型。You want the
UIKeyboardTypeNumbersAndPunctuation
keyboard type.executor21 所说的代码示例:
And a code example of what executor21 said: