zoukankan      html  css  js  c++  java
  • IOS零碎技术整理(2)-隐藏系统Tabbar

    原理就是将tabbar移出显示区

    -(void)hideSystemTabBar:(UITabBar*) tabbarcontroller {

         [UIView beginAnimations:nil context:NULL];//动画效果,可以不用

         [UIView setAnimationDuration:0.1];

        for(UIView* view in tabbarcontroller.subviews)

        {

            if([view isKindOfClass:[UITabBarclass]])

            {

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

            }

            else

            {

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

            }

        }

         [UIView commitAnimations];

        

    }

    -(void)showSystemTabBar:(UITabBarController*) tabbarcontroller {

        //    [UIView beginAnimations:nil context:NULL];

        //    [UIView setAnimationDuration:0.5];

        for(UIView* view in tabbarcontroller.view.subviews)

        {

            NSLog(@"%@", view);

            if([view isKindOfClass:[UITabBarclass]])

            {

                [view setFrame:CGRectMake(view.frame.origin.x,WCGLOBAL_SCREEN_SIZE.height - WCTabBarHeight, view.frame.size.width, view.frame.size.height)];

            }

            else

            {

                [view setFrame:CGRectMake(view.frame.origin.x, view.frame.origin.y, view.frame.size.width,WCGLOBAL_SCREEN_SIZE.height - WCTabBarHeight)];

            }

            

        }

        //    [UIView commitAnimations];

    }

  • 相关阅读:
    ios-表视图-demo4-内容自己适应高度
    ios-表视图-demo3-单选
    应用管理的实现
    初识MVC和KVC
    Xcode的常用快捷键
    UI基础--手写代码实现汤姆猫动画
    UI基础--UIView常见属性之frame、center、bounds、transframe属性
    UI基础--UIButton、懒加载
    ios多线程
    ios多线程简介
  • 原文地址:https://www.cnblogs.com/v-jing/p/3302864.html
Copyright © 2011-2022 走看看