如何更改 TabBarController 行为?

发布于 2024-11-02 00:04:15 字数 185 浏览 1 评论 0原文

我是 iPhone 新手,对于我的第一个应用程序,我需要覆盖 TabBarController 的正常行为。 我有 3 个选项卡,在第一个选项卡上我需要根据运行时的某些逻辑加载不同的视图。这可能吗?

我查看了 TabBarController 委托,但据我了解它不允许行为覆盖,只是“用户输入通知”。

有什么想法吗? 谢谢。

I'm an iPhone newbie and for my first application I need to override the normal behavior of TabBarController.
I have 3 tabs and on the first one I need to load a different view according to some logic at runtime. Is this possible?

I had a look at the TabBarController delegate but as far as I understand it doesn't allow behavior override, just "notification on user input".

Any idea?
Thank you.

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

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

发布评论

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

评论(1

清浅ˋ旧时光 2024-11-09 00:04:15

要更改特定选项卡中的控制器,您可以:

NSMutableArray* controllers = [NSMutableArray arrayWithArray:tabBarController.viewControllers];

int newIndex = 0;
[controllers replaceObjectAtIndex:newIndex withObject:newController];

tabBarController.viewControllers = controllers;

To change the controller in a particular tab, you do:

NSMutableArray* controllers = [NSMutableArray arrayWithArray:tabBarController.viewControllers];

int newIndex = 0;
[controllers replaceObjectAtIndex:newIndex withObject:newController];

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