ios开发跳转到指定的TabBarViewController中的某一个VIewController

// 这是从一个模态出来的页面跳到tabbar的某一个页面
        AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
        UITabBarController *tabViewController = (UITabBarController *) appDelegate.window.rootViewController;
        [tabViewController setSelectedIndex:2];

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

你可能感兴趣的:(ios开发)