在整个视图中保留 UIToolbar 的按钮

发布于 2024-12-04 15:41:55 字数 172 浏览 0 评论 0原文

在第一个导航控制器中,我向 UIToolbar 添加了四个按钮。这四个按钮也有四种不同的操作。

我的问题是,当我在导航堆栈中推送新的视图控制器时,UIToolbar 仍然可见,但四个按钮消失了。

如何保留按钮以及如何保留其操作,而无需重写代码以在我想要工具栏的每个视图中添加四个按钮和四个操作方法?

In the first navigation controller I've added four buttons to an UIToolbar. These four buttons have also four different actions.

My problem is when I push a new view controller in the navigation stack the UIToolbar is still visible but the four buttons disappears.

How to keep the buttons and how to keep their actions without rewriting the code to add four buttons and the four actions method in every view where I want the toolbar?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

灼疼热情 2024-12-11 15:41:55

创建一个继承 UIToolbar 类(换句话说,您自己的自定义 Toolbar 类)的单独类,然后在屏幕上适当位置的后续类中创建并添加这个新类的对象的实例(它的底部)。

创建一个继承 UIView 类的单独类,并向其添加按钮,使其具有与 UIToolbar< 相同的外观和感觉/代码>。然后创建这个新类的对象的实例,并将该对象的 UIView 添加为子视图(使用 [self.view addSubview:yourcustomViewObject.view];)在适当的位置屏幕(其底部)。

Make a separate class that inherits the UIToolbar class(in other words, your own custom Toolbar class) and then create and add instances of this new class' objects in subsequent classes at the proper location on the screen(its bottom).

OR

Make a separate class that inherits the UIView class and add buttons to it that give the same look and feel as the UIToolbar. Then make instances of this new class' objects and add this object's UIViewas a subView (using [self.view addSubview:yourcustomViewObject.view];) at the proper location on the screen(its bottom).

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