码迷,mamicode.com
首页 > 其他好文 > 详细

隐藏uitabbar的代码

时间:2015-11-14 20:36:24      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:

隐藏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];

     

 }

 

隐藏uitabbar的代码

标签:

原文地址:http://www.cnblogs.com/zhou--fei/p/4964961.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!