hide tab ios

来源:互联网 发布:天高云淡秒赞4.0源码 编辑:程序博客网 时间:2024/06/06 09:22

- (void) hideTabBar:(BOOL) hidden{

    

    [UIView beginAnimations:nilcontext:NULL];

    [UIView setAnimationDuration:0];

    UIView *window = [UIApplicationsharedApplication].keyWindow;

    for(UIView *viewin self.tabBarController.view.subviews)

    {

        if([viewisKindOfClass:[UITabBar class]])

        {

            if (hidden) {

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

            } else {

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

            }

        }

        else

        {

            if (hidden) {

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

            } else {

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

            }

        }

    }

    

    [UIView commitAnimations];

}

原创粉丝点击