gpt4 book ai didi

ios - 如何在单击 iOS 的自定义选项卡栏按钮上弹出到 Root View Controller

转载 作者:行者123 更新时间:2023-11-29 02:26:14 25 4
gpt4 key购买 nike

我正在使用选项卡栏 Controller 显示自定义选项卡栏。

并为 View Controller 创建单独的navigationController。

First *firstViewController = [[First alloc]init];
UINavigationController *firstNavController = [[UINavigationController alloc]initWithRootViewController:firstViewController];

Second *secondViewController = [[Second alloc]init];
UINavigationController *secondNavController = [[UINavigationController alloc]initWithRootViewController:secondViewController];

Third *thirdViewController = [[Third alloc]init];
UINavigationController *thirdNavController = [[UINavigationController alloc]initWithRootViewController:thirdViewController];

tabBar.viewControllers = [[NSArray alloc] initWithObjects:firstNavController, secondNavController, thirdNavController, nil];
tabBar.delegate=self;
tabBar.selectedIndex=0;

但是当我尝试通过单击选项卡弹出到根目录时,只能访问第三个导航 Controller 。

因此它仅适用于第三个选项卡,第一个和第二个选项卡不起作用。

最佳答案

如果您在 tabBarController 之上加载一个 View Controller ,这就是您关闭加载的 View Controller 的方式。

[self.presentingViewController dismissViewControllerAnimated:self completion:nil];

关于ios - 如何在单击 iOS 的自定义选项卡栏按钮上弹出到 Root View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27503609/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com