将工具栏添加到选择器视图
我如何能够将工具栏添加到选择器? 我希望在选择器上方有一个带有“完成”栏按钮项目的工具栏。单击“完成”按钮将隐藏(动画)屏幕外的选择器(像键盘一样转到底部)
我仍在寻找此操作方法...希望你能帮助我。
谢谢
How I could able to add a toolbar to the picker?
I want above the picker there is a toolbar with a "done" bar button item. clicking the "done" button will hide (animate) the picker offscreen (going to bottom like the keyboard)
I'm still looking for this how-to... Hope you could help me.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当我需要这样做时,我通常会创建一个容器视图并将选择器和工具栏放入其中。这允许分组作为一个单元被隐藏、移动、调整大小等。
When I need to do this, I typically make a container view and place into it both the picker and the toolbar. This allows the grouping to be hidden, moved, sized, etc as a unit.
最简单的方法是创建一个新的 UIToolbar,并将其放置在选择器视图的正上方,当您对其进行动画处理时。请查看 DateCell 动画代码示例。
The easiest way would be to make a new UIToolbar and position that directly above your picker view when you animate it in. Check out the DateCell example for animation code.