gpt4 book ai didi

ios - 以编程方式从 View Controller 转到标签栏的 View

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:59:49 26 4
gpt4 key购买 nike

enter image description here

嗨,这是我的 Storyboard,我想从第一个 View Controller 转到 LoggedinViewController。

我平时用

[self performSegueWithIdentifier:@"s1" sender:self];

但是如果我添加选项卡栏 Controller ,这一行不起作用,我该如何解决?

最佳答案

如果您已嵌入导航 Controller ,则可以使用以下内容。

UIStoryboard *myStoryBoard =[UIStoryboard storyboardWithName:@"Story_Board_Name" bundle:nil];
UITabBarController *tabBarController = [myStoryBoard instantiateViewControllerWithIdentifier:@"TABid"];
self.tabBarController.selectedIndex = 0;
[self.navigationController pushViewController:self.tabBarController animated:YES];

或者试试这个

UIStoryboard *myStoryBoard =[UIStoryboard storyboardWithName:@"Story_Board_Name" bundle:nil];
UITabBarController *tabBarController = [myStoryBoard instantiateViewControllerWithIdentifier:@"TABid"];
self.tabBarController.selectedIndex = 0;
[self performSegueWithIdentifier:@"s1" sender:self];

关于ios - 以编程方式从 View Controller 转到标签栏的 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25808315/

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