欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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];

在需要点击跳转的地方调用即可