我可以在 iPad 应用程序中获取 iPhone 数字键盘吗?
我想为用户提供仅输入数字的选项。 iPad 的数字键盘会弹出其他符号等。是否可以在 iPad 应用程序中获取 iPhone 版本的数字键盘?
Possible Duplicate:
UIKeyboardTypeNumberPad on iPad
I want to give users the option of only inputting numbers. The number pad for iPad pops up with other symbols etc. Is it possible to get the iPhone version of the number pad in an iPad app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,这是不可能的。 iPad 上只能使用 UIKeyboardTypeNumberPad 获取数字,字母和符号不会被锁定。如果您确实需要这个,我建议您查找有关制作自定义键盘和使用 NSMutableStrings 的教程。这样,您就可以创建自己的键盘和体验,并且仍然拥有与 iPhone 相同的数字键盘。
Unfortunately, this is not possible. You can only use the UIKeyboardTypeNumberPad to get the numbers on an iPad, and the letters and symbols are not locked out. If you really need this, I would recommend looking up tutorials about making custom keyboards and using NSMutableStrings. This way, you can create your own keyboard and experience, and still have the same number pad as the iPhone.