美文网首页ios-UI
iOS跳转到指定tabBar界面

iOS跳转到指定tabBar界面

作者: zhengelababy | 来源:发表于2017-04-13 11:47 被阅读3832次

    AppDelegate *app = (AppDelegate *)[UIApplication sharedApplication].delegate;

    UIViewController *controller = app.window.rootViewController;

    【(SuerTabBarViewController是继承于TabBarViewController的相当于mainViewController)】 SuerTabBarViewController *rvc = (SuerTabBarViewController *)controller;

    [rvc setSelectedIndex:3];//假如要跳转到第四个tabBar那里,因为tabBar默认索引是从0开始的

    [weakSelf.navigationController popToRootViewControllerAnimated:YES];

    相关文章

      网友评论

        本文标题:iOS跳转到指定tabBar界面

        本文链接:https://www.haomeiwen.com/subject/jilbattx.html