以编程方式切换到“更多” iPhone 上的选项卡

发布于 2024-08-07 11:55:25 字数 140 浏览 3 评论 0原文

我想以编程方式将 tabBarController 初始化为用户选择的最后一个选项卡。这对于我的标准选项卡来说工作正常,但是如果 uwer 位于“更多”选项卡上,我无法弄清楚如何初始化它,因为该选项卡(据我所知)没有索引)。

有人知道这样做的方法吗?

I want to programmatically initialise my tabBarController to the last tab selected by the user. This works OK for my standard tabs, but if the uwer was on the "more" tab, I cannot figure out how to initialise it as this tab doesn't (to my knowledge) have an index).

Is anyone aware of a way of doing this?

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

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

发布评论

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

评论(1

生活了然无味 2024-08-14 11:55:25

直接来自 -[UITabBarController selectedIndex] 文档:

选择“更多”导航
控制器本身,您必须更改
selectedViewController 的值
改为财产

所以只需这样做:

[controller setSelectedViewController:[controller moreNavigationController]];

Straight from the -[UITabBarController selectedIndex] documentation:

To select the More navigation
controller itself, you must change the
value of the selectedViewController
property instead

So just do:

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