iOS多次push,返回指定根模块
2016-11-20 本文已影响272人
船长_
![](https://img.haomeiwen.com/i987457/0afdca03aa824a08.gif)
方法一
//返回我的消息
self.tabBarController.selectedIndex = 2;
[self.navigationController popToRootViewControllerAnimated:YES];
方法二
MyFunTabBarController *myFunVc = [[MyFunTabBarController alloc] init];
[self presentViewController:myFunVc animated:YES completion:nil];
self.view.window.rootViewController = myFunVc;
方法三
AppDelegate *appdelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
MyFunTabBarController *myFunVc = [[MyFunTabBarController alloc] init];
myFunVc.selectedIndex = 3;
appdelegate.window.rootViewController = myFunVc;