隱藏uitabbar的程式碼

滴水微瀾發表於2015-11-14

隱藏uitabbar的程式碼:

/**

 *  隱藏UITabbar

 *

 *  @param hidden yes隱藏

 */

 - (void)hidesTabBar:(BOOL)hidden{

 

 

    [UIView beginAnimations:nil context:NULL];

     [UIView setAnimationDuration:0];

 

     for (UIView *view in self.tabBarController.view.subviews) {

         if ([view isKindOfClass:[UITabBar class]]) {

                 if (hidden) {

                         [view setFrame:CGRectMake(view.frame.origin.x, [UIScreen mainScreen].bounds.size.height, view.frame.size.width , view.frame.size.height)];

       

                   }else{

                             [view setFrame:CGRectMake(view.frame.origin.x, [UIScreen mainScreen].bounds.size.height - 49, view.frame.size.width, view.frame.size.height)];

            

                         }

             }else{

                     if([view isKindOfClass:NSClassFromString(@"UITransitionView")]){

                             if (hidden) {

                                    [view setFrame:CGRectMake(view.frame.origin.x, view.frame.origin.y, view.frame.size.width, [UIScreen mainScreen].bounds.size.height)];

               

                                }else{

                                        [view setFrame:CGRectMake(view.frame.origin.x, view.frame.origin.y, view.frame.size.width, [UIScreen mainScreen].bounds.size.height - 49 )];

                                    

                                    }

                         }

                 }

     }

     

     [UIView commitAnimations];

     

 }

 

相關文章