事件触发时在 TabBarController 视图之间切换

发布于 2024-08-28 23:55:24 字数 397 浏览 1 评论 0原文

我有一个 UITabBarController,有两个不同的视图可以在之间切换。我想做的是当在 View1 中单击按钮时直接切换到 View2。然后,在 View2 中,如果他们单击按钮,则会将其切换到 View1。

当 View1 和 View2 单击 tabBarController 时,它会在 View1 和 View2 之间传输,但我试图在事件发生时为它们执行切换。

有没有办法通过调用 UITabBarController 上的方法来做到这一点?

@interface CalcAppDelegate : NSObject <UIApplicationDelegate> {
UITabBarController *tabBarController;

}

I have a UITabBarController with two different views to switch between. What I would like to do is when a button is clicked in View1 to switch directly to View2. Then in View2 if they click a button it switches them to View1.

It transfers between View1 and View2 when they click on the tabBarController fine but I'm trying to perform the switching for them when events occur.

Is there a way to do this by calling a method on my UITabBarController?

@interface CalcAppDelegate : NSObject <UIApplicationDelegate> {
UITabBarController *tabBarController;

}

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

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

发布评论

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

评论(1

jJeQQOZ5 2024-09-04 23:55:24

只需在您想做的任何地方进行即可,

CalcAppDelegate *appDel = (CalcAppDelegate *)[[UIApplication sharedApplication] delegate];
[appDel.tabBarController setSelectedIndex:theIndexOfTabItem];

希望这会有所帮助。

谢谢,

马杜普

Simply do wherever you want to do this,

CalcAppDelegate *appDel = (CalcAppDelegate *)[[UIApplication sharedApplication] delegate];
[appDel.tabBarController setSelectedIndex:theIndexOfTabItem];

Hope this helps.

Thanks,

Madhup

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