点击 UITextField 时不同的 UIToolBar/UINavigatonBar

发布于 2024-12-16 10:50:10 字数 325 浏览 0 评论 0原文

好的,我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

护你周全 2024-12-23 10:50:10

首先,当您已经有了一个工具栏时,为什么还要放置另一个工具栏。通过更改工具栏按钮的名称来使用相同的按钮。

需要注意的步骤。

  1. Delegate 添加到文本字段。 (因此,您可以使用文本字段委托方法在文本字段开始编辑和结束时更改按钮的标题名称。)

2.在左侧和左侧执行操作右键检查条件。
IE

UIBarButton *the_button = (UIBarButton *)sender;

if([[the_button.currentTitle] isEqualToString:@"Save"])
{
//perform some action
}

else 
{
//perform else condition
}

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.

  1. add 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

UIBarButton *the_button = (UIBarButton *)sender;

if([[the_button.currentTitle] isEqualToString:@"Save"])
{
//perform some action
}

else 
{
//perform else condition
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文