点击 UITextField 时不同的 UIToolBar/UINavigatonBar
好的,我使用 setLeftBarButtonItem 和 setRightBarButtonItem 在工具栏中有一个带有“下一步”和“后退”按钮的 UINavbarController。我在下面的表格视图中有一堆文本字段,当有人点击文本字段时,我想将导航栏更改为
a)删除或隐藏“取消”和“保存”按钮 b)添加完成按钮来关闭键盘或日期选择器
当使用 setRightBarButtonItem/setLeftBarButonItem 时,我实际上无法删除或隐藏取消/保存按钮...只能禁用它们。
所以我的问题是,当点击文本字段以显示不同的按钮时,如何显示不同的 UItoolBar?
Ok so I have a UINavbarController with Next and Back buttons in the toolbar using setLeftBarButtonItem and setRightBarButtonItem. I have a bunch of textfields in a tableview below that and when someone taps in the textfield I want to change the navbar to
a) remove or hide the Cancel and Save buttons
b) add a done button to close the keyboard or datepicker
When using setRightBarButtonItem/setLeftBarButonItem I can't actually remove or hide the Cancel/Save buttons... only disable them.
So my question is how can I display a different UItoolBar when tapping in a textfield to display different buttons?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,当您已经有了一个工具栏时,为什么还要放置另一个工具栏。通过更改工具栏按钮的名称来使用相同的按钮。
需要注意的步骤。
Delegate
添加到文本字段。 (因此,您可以使用文本字段委托方法在文本字段开始编辑和结束时更改按钮的标题名称。)2.在左侧和左侧执行操作右键检查条件。
IE
Firstly why do you want to place another toolbar, when you have already one. Use the same buttons by changing the names of tool bar button.
steps to be taken care.
Delegate
to textfields. (So you can use textfield delegate methods to change the title name of buttons when textfield begins editing & ended.)2.performing action on left & right button check for the condition.
i.e