我开发了一个没有情节提要的应用程序。

我具有注销功能。当用户单击注销时,我必须将他重定向到登录页面,并清除所有导航堆栈,并使登录页面成为根视图。

我正在尝试使用此代码,但使用此应用程序会崩溃:

 SignUpVC *main = [[SignUpVC alloc]initWithNibName:@"SignUpVC" bundle:nil];

UINavigationController *navController = [[UINavigationController alloc]initWithRootViewController:main];

[self presentViewController:main animated:NO completion:nil];

最佳答案

要更改应用程序的根视图,您可以通过这种方式进行

SignUpVC *main = [[SignUpVC alloc]initWithNibName:@"SignUpVC" bundle:nil];
UINavigationController *navController = [[UINavigationController alloc]initWithRootViewController:main];
[[UIApplication sharedApplication].keyWindow setRootViewController:navController];

关于ios - 如何在iOS应用程序中的任何位置更改根 View ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35683975/

10-08 23:44