iPhone应用程序:你输入分数,它就可以工作,但我如何限制它?
我的iPhone应用程序工作正常,所有部分工作正常,但是它可以让你对某些事情进行评分,但是我如何限制分数,例如在你可以对项目x“609573095730”进行评分时,但我只想允许用户分数在 0 到 100 之间,我该怎么做,我可以想象它非常简单,但我似乎无法自己解决。
旁注: 通过数字键盘输入分数(如电话键盘)
My iPhone app works fine, and all parts work fine, however it lets you score certain things, but how can i limit the score for example at the minute you could rate item x "609573095730" but i only want to to allow the user to score between 0 and 100, how would i do this, i can imagine it to be very simple, but i can't seem to work it out my self.
Side note:
Score is inputed via numerical keypad (like the phone one)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此,当您收到输入时,将其解析为 NSInteger 或 NSNumber,然后检查它是否在 0 到 100 之间
另一个解决方案是使用从 0 到 100 的 UIPickerView :)
So, when you receive the input, parse it to NSInteger or NSNumber and then check if it is between 0 and 100
The other solution is using a UIPickerView from 0 to 100:)