计算器中只有一个逗号/点!适用于 iPhone 的 Objective-C
我正在为 iPhone 建立一个 CalculatorApp,我只需要结束一件事,那就是浮点!
与普通计算器一样,我需要做一些事情,以便只允许一个“。” 。
你们能帮帮我吗?
I'm putting up a CalculatorApp for the iPhone and there is just one thing that i need to end, the floating-point!
As in normal calculators, i need to do something so that will only permit one "." .
Can you dudes help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您有几种方法可以选择,例如
NSString
的rangeOfString
方法,例如祝你好运;)
you have a few ways to go, such as,
NSString
'srangeOfString
method, e.g.Good luck ;)
您是否使用 UIButton 作为小数点按钮?如果是这样,您可以在按下它后立即将其禁用。当然,当按下“清除”或“等于”或其他任何按钮时重新启用它:
Are you using a UIButton for the decimal point button? If so, you could simply disable it as soon as it is pressed. And then of course, re-enable it when "clear" or "equals" or whatever is pressed: