iPad 十进制选择器控制
我只是想知道如何为十进制数字输入制作选择器/旋转器控件。我在其他 iPhone 应用程序上看到过这种情况,他们点击一个按钮,就会出现一个数字选择器,允许他们移动微调器中的数字来选择他们需要的数字。
有什么想法吗?
I'm just wondering how I go about making a picker/spinner control for a decimal number input. I have seen it on other iPhone apps where they click a button and a number picker comes up and allows them to move the numbers in the spinner to select the number they require.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 UIPickerControl 中设置多个组件。只需为每个组件分配一个 0-9 的数组,并在用户在单个组件中选择新数字后组合数字即可。
You can set multiple components in the UIPickerControl. Just assign an array of 0-9 for each component, and compose the number after the user has selected a new number in a single component.