gpt4 book ai didi

ios - UIAlertView 按钮将您带到选项卡栏 Controller 中的另一个 View

转载 作者:行者123 更新时间:2023-11-28 21:59:52 27 4
gpt4 key购买 nike

您好,我目前正在开发一个使用标签栏 Controller 的应用程序。在选项卡栏 Controller 中,我有 3 个 View 。第三个 View 有一个按钮,按下它会向用户发出警报。当用户按下警报中的确定按钮时,我希望将用户重定向到选项卡栏 Controller 中的第一个 View 。我尝试了以下但没有成功,我不确定是否可行。我还留下了我的其他发现,以防万一我在正确的轨道上但没有注意到。提前致谢!

-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
if (buttonIndex == 0)
{
//DetailClassViewController *view = [[DetailClassViewController alloc] initWithNibName:@"DetailClassViewController" bundle:nil];
//UINavigationController *testNavi = [[UINavigationController alloc]initWithRootViewController:view];
//self.window.rootViewController = testNavi;
//[self.window makeKeyAndVisible];
DetailClassViewController *controller=[[DetailClassViewController alloc]initWithNibName:@"DetailClassViewController" bundle:nil];

self.modalTransitionStyle=UIModalTransitionStyleCrossDissolve;
[self presentViewController:controller animated:YES completion:nil];

}
}

最佳答案

我想你可以简单地使用:

self.tabBarController.selectedIndex = 0;

希望对你有帮助。

关于ios - UIAlertView 按钮将您带到选项卡栏 Controller 中的另一个 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25396500/

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