IOS tabbar隐藏后还是会留下一片空白地方,要怎样完全把他隐藏掉?
我项目的结构是TabBarController>NavigationController>TableViewController
我在NavigationController里面设置了 self.hidesBottomBarWhenPushed = YES;
self.tabBarController.tabBar.hidden = YES;
然后TabBar是不显示了,但是他还是会占用一片控件
上图:
就最下面的那一块蓝色区域,我本意是想要设置这个页面刚好铺满屏幕,不能滚动的,可是现在下面多了一块TabBar的空间,导致整个页面可以向下滚动,请教下怎么去掉这块空间
落下面玩跑跑步
10 years, 1 month ago
Answers
我们在开发时采用的tabbar是RDVTabBarController
github地址
robbdimitrov/RDVTabBarController
你的问题我没有遇到过,但是在stackoverflow上看到一个类似的问题,我贴上地址希望对你有帮助。
Hiding Tabbar still occupy Space?
yourInnerViewController.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:yourInnerViewController animated:YES];
笔墨为你侯
answered 10 years, 1 month ago