IOS 7 hide tabbar issue

ios7, uitabbar, uitabbarcontroller, uiview

Solution

I hope you got the solution. Just to make sure, did you try

 self.edgesForExtendedLayout = UIRectEdgeBottom;

Problem

Hide tabbar in IOS7 shows informal behaviour When I use ``` self.tabBarController.tabBar.hidden = YES; ``` Above code hides the tabBar, but my view from bottom does not remain interactive But when I uses this just before pushing viewController in navigation ``` someViewController.hidesBottomBarWhenPushed = YES [self.navigationController pushViewController:someViewController animated:YES]; ``` It hides tabbar as well as view from bottom is also interactive. but problem in this case is, when we pop viewController it shows black bar just above tabbar for few seconds.

Original source