关于Spinner界面的问题
我正在尝试制作一个如下所示的微调器选择界面。 http://media.smashingmagazine.com/cdn_smash/ wp-content/uploads/2009/10/allRecipies.png
我正在考虑使用旋转的 UIPickerView 来实现它。 您认为可能吗,或者还有其他更好的解决方案吗?
提前致谢。
I'm trying to make an spinner selection interface like the one in the following.
http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2009/10/allRecipies.png
I'm thinking of using rotated UIPickerView to implement it.
Do you think it is possible or is there any other better solution?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些收据从左到右水平滚动并右后滚动?尽管您可以使
UIPickerView
水平工作(请参阅 这里)。UIPickerView
确实适合垂直滚动。在这种情况下,我真的会推荐一系列
pagingEnabled
属性设置为YES
的 UIScrollViews。These recepies scroll horizontally from left-to-right and back right? Although you can make an
UIPickerView
to work horizontally (see here).UIPickerView
is really ment for vertical scrolling.In this cituation I would really recommend a series of UIScrollViews that have
pagingEnabled
property set toYES
.