将“设置首选项”的“键盘类型”更改为带小数点的数字键盘

发布于 2024-12-08 06:24:04 字数 302 浏览 0 评论 0原文

我目前正在为设置首选项实现 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

迷爱 2024-12-15 06:24:04

不,没有带小数点的数字键盘。

No, a number pad keyboard with decimal point is not available.

是伱的 2024-12-15 06:24:04

手动将键盘类型(如以编程方式)设置为 UIKeyboardTypeDecimalPad

例子:

[self.priceTextField setKeyboardType:UIKeyboardTypeDecimalPad];

Set the keyboard type manually (as in programmatically) to UIKeyboardTypeDecimalPad.

Example:

[self.priceTextField setKeyboardType:UIKeyboardTypeDecimalPad];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文