IOS tabbar的跳转

作者: 夜涂黑 | 来源:发表于2020-11-21 11:21 被阅读0次

    第一种方案:

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

        UIViewController * controller = appDelegate.window.rootViewController;

        UITabBarController * tabBarController = (UITabBarController *)controller;

        [tabBarController setSelectedIndex:3];

        //假如要跳转到第四个tabBar那里,因为tabBar默认索引是从0开始的

        [self.navigationController popToRootViewControllerAnimated:YES];

    第二种方案:

        self.navigationController.tabBarController.selectedIndex = 3;

    第三种方案:

    self.tabBarController.selectedIndex = 3;

    相关文章

      网友评论

        本文标题:IOS tabbar的跳转

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