OStack程序员社区-中国程序员成长平台

标题: iOS:在没有 UITabBarController 的情况下从用户界面实现 UITabBar [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 16:52
标题: iOS:在没有 UITabBarController 的情况下从用户界面实现 UITabBar

在我的应用程序中,我有一个 UIViewController,我希望在其中添加一个 UITabBar。所以我通过用户界面添加了它(到 UIViewController.xib 文件中),并在 UIViewController.h+m 文件中创建了 IUTabBar 和 UITabBarItems 的实例。在 xib 文件中,我能够将代码项连接到 xib 上的代码项(通过从文件所有者拖动到相关项并选择相关的 IBOutlet),但我似乎无法将按钮连接回写在上的 IBActions h+m 个文件。

在添加 UITabBar 之前,我使用 UIToolBar 并且在进行这些连接时没有问题。

谁能解释我做错了什么?



Best Answer-推荐答案


您应该实现 UITabBarDelegate 协议(protocol) (documentation here)。

一旦你实现了这个协议(protocol),只需使用 - (void)tabBarUITabBar *)tabBar didSelectItemUITabBarItem *)item 方法来知道用户何时更改了一个选定项标签栏。在此方法的实现中,您必须检查选择了哪个项目,并基于此手动更改 View 的内容。

关于iOS:在没有 UITabBarController 的情况下从用户界面实现 UITabBar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6801148/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4