iOS 中一个tabBarController 切换到另一个tabBarController的实现方法

iOS 中主tab(含有5个视图) 切换到次级tab(含有另外五个视图) 的使用方法:


-(void)makeTabBarHidden:(BOOL)hide


{


      if ( [self.rootTabBarController.view.subviews count] < 2 ) {

        return;

    }

    

    UIView *contentView;

    

    if ( [[self.rootTabBarController.view.subviews objectAtIndex:0] isKindOfClass:[UITabBar class]] ) {

        contentView = [self.rootTabBarController.view.subviews objectAtIndex:1];

    } else {

        contentView = [self.rootTabBarController.view.subviews objectAtIndex:0];

    }

    

    if (hide) {

        contentView.frame = self.rootTabBarController.view.bounds;

    }

    else {

        contentView.frame = CGRectMake(self.rootTabBarController.view.bounds.origin.x,

                                       self.rootTabBarController.view.bounds.origin.y,

                                       self.rootTabBarController.view.bounds.size.width,

                                       self.rootTabBarController.view.bounds.size.height - self.rootTabBarController.tabBar.frame.size.height);

    }

    

    self.rootTabBarController.tabBar.hidden = hide;

}


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。