将“设置首选项”的“键盘类型”更改为带小数点的数字键盘
我目前正在为设置首选项实现 Root.plist。 我想制作一个文本字段元素(PSTextFieldSpecifier),其中输入键盘作为带有小数点的 NumberPad。
我试图将“KeyboardType NumberPad”放入plist中,但是iPhone 4.3模拟器的NumberPad没有小数点。 我还尝试了“KeyboardType DecimalPad”和“KeyboardType NumbersAndPunctuation”,但它不起作用。
是否有一个 KeyboardType 可以显示带有小数点的数字键盘?
提前致谢
I am currently implementing Root.plist for the Settings Preferences.
I want to make a Text Field Element (PSTextFieldSpecifier) with input keyboard as NumberPad with a Decimal Point.
I tried to put "KeyboardType NumberPad" in the plist, however the iPhone 4.3 Simulator's NumberPad doesn't have the Decimal Point.
I also tried to "KeyboardType DecimalPad" and "KeyboardType NumbersAndPunctuation" but it didn't work.
Is there a KeyboardType that will show a Numberpad with a decimal point?
Thanks in Advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,没有带小数点的数字键盘。
No, a number pad keyboard with decimal point is not available.
手动将键盘类型(如以编程方式)设置为
UIKeyboardTypeDecimalPad
。例子:
Set the keyboard type manually (as in programmatically) to
UIKeyboardTypeDecimalPad
.Example: