打开TabBar子视图

发布于 2025-01-03 07:42:35 字数 183 浏览 0 评论 0原文

我在 TabBar 应用程序中有 2 个子视图。我应该从第二个视图转到第一个视图,但不是借助选项卡栏,而是通过第二个视图上的另一个按钮。

如果我创建简单的segue(在第二个视图和第一个视图上的 bytton 之间),选项卡栏会认为我仍在第二个视图上,并且选项卡栏上的第二个按钮仍然突出显示。

你知道实现它的正确方法吗?

I got 2 subviews in a TabBar app. I should go to the 1st view from the 2nd, but not with help of tabbar, but throught another button, which is on the 2nd view.

If i create simple segue (between bytton on the 2nd view and the 1st view), tabbar will think, that i am still on the 2nd view and the 2nd button on the tabbar still highlighted.

Do you know correct way to realise it?

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

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

发布评论

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

评论(2

望喜 2025-01-10 07:42:35

如果您想在不触摸 tababr 控制器的情况下更改视图,

请使用这行代码,其中您要使用

self.tabBarController.selectedViewController=[self.tabBarController.viewControllers objectAtIndex:1];

使用这一行,您可以移动选项卡控制器的 2 个选项卡,而无需触摸选项卡栏。

If you want to change your view without touching tababr controller

use this line of code where you want to use

self.tabBarController.selectedViewController=[self.tabBarController.viewControllers objectAtIndex:1];

using this line you can move the 2 tab of the tabcontroller without touching tabbar.

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