如何在 iPhone 中使用自定义数字键盘显示单个点?
我正在创建自定义 NumberPad
if (([[[UIDevice currentDevice] systemVersion] doubleValue] >= 4.1)) {
inputBoxTextField.keyboardType = UIKeyboardTypeDecimalPad;
}
,我的问题是,我只想显示点一次。
提前致谢。
i am creating custom NumberPad
if (([[[UIDevice currentDevice] systemVersion] doubleValue] >= 4.1)) {
inputBoxTextField.keyboardType = UIKeyboardTypeDecimalPad;
}
my problem is, i want to display dot only one time.
thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你想让用户只输入一个点,你可以使用委托方法
并简单地检查textField是否已经包含一个点。
If you want to allow the user to enter only one dot, you can use the delegate method
And simply check if the textField already contains a dot.
我使用以下代码。非常适合我并且代码更少。
I use the following code. Works perfectly for me and with less code.