ios开发跳转到指定的TabBarViewController中的某一个VIewController
程序员文章站
2022-03-29 17:10:07
...
// 这是从一个模态出来的页面跳到tabbar的某一个页面
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
UITabBarController *tabViewController = (UITabBarController *) appDelegate.window.rootViewController;
[tabViewController setSelectedIndex:2];
在需要点击跳转的地方调用即可