如何向 UIPickerView 控件添加自定义工具栏?
我想在 UIPickerView 控件的顶部添加一个自定义工具栏。我在键盘上执行此操作,但无法使用 UIPickerView 执行此操作。
尼尚特
I want to add a custom toolbar at the top of the UIPickerView control. I did this on Keyboard but not able to do with UIPickerView.
Nishant
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
通过 IBoutlet 创建一个工具栏,并将其 y 坐标设置为 100 或大于视图高度。然后在特定的操作中相应地改变 y 坐标。这是通过动画完成的。
您还可以将其与键盘一起使用。
通过使用
-(void)keyboardWillShow:(NSNotification *) 注意
和
-(void)keyboardWillHide:(NSNotification *)注意
make a toolBar by IBoutlet and set its y coordinate to 100 or more than view's height. then in particular action change y coordinate accordingly. this is done via animation.
You also use this with keyboard .
by using
-(void) keyboardWillShow:(NSNotification *) note
and
-(void) keyboardWillHide:(NSNotification *) note
我创建了一个自定义视图,并在其上添加了一个完成按钮以及选择器视图。
谢谢
I created a custom view and added a done button on that along with picker view.
Thanks