我正在使用标签栏应用程序。
在所有视图标签栏中进行。确定。
但在特定的一个视图中,我不想显示我的标签栏。
当我将视图推到下一个视图时,标签栏也会进入该视图。
当我试图隐藏它时,它会显示该视图的空白区域。
做什么..提前thnaks
答案 0 :(得分:12)
...试
MyViewController *myController = [[MyViewController alloc] init];
//hide tabbar
myController.hidesBottomBarWhenPushed = YES;
//add it to stack.
[[self navigationController] pushViewController:myController animated:YES];
答案 1 :(得分:2)
UITabBar是一个顶级视图,这意味着几乎所有视图都位于其下方。甚至UINavigationController的座位也会低于tabBar。
你可以像这样隐藏tabBar:
- (void)hideTabBar:(UITabBarController *)tabbarcontroller withInterval:(NSTimeInterval)delay {
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:delay];
for(UIView *view in tabbarcontroller.view.subviews)
{
if([view isKindOfClass:[UITabBar class]])
{
[view setFrame:CGRectMake(view.frame.origin.x, view.frame.origin.y+50, view.frame.size.width, view.frame.size.height)];
}
else
{
[view setFrame:CGRectMake(view.frame.origin.x, view.frame.origin.y, view.frame.size.width, view.frame.size.height+50)];
}
}
[UIView commitAnimations];
}
然后再次显示:
- (void)showTabBar:(UITabBarController *)tabbarcontroller withInterval:(NSTimeInterval)delay {
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:delay];
for(UIView *view in tabbarcontroller.view.subviews)
{
if([view isKindOfClass:[UITabBar class]])
{
[view setFrame:CGRectMake(view.frame.origin.x, view.frame.origin.y-50, view.frame.size.width, view.frame.size.height)];
}
else
{
[view setFrame:CGRectMake(view.frame.origin.x, view.frame.origin.y, view.frame.size.width, view.frame.size.height-50)];
}
}
[UIView commitAnimations];
}
UITabBar默认高度为50像素。所以你只需要为框架设置新的高度并为其设置动画。
答案 2 :(得分:1)
您可以将视图添加到主窗口,它将位于标签栏上:
[[myApp appDelegate].window addSubview:myView];