I’m having tabbar baseed application..
In my TabBar application i want to hide the tabbar when the 2nd view appear.In my second view having imageView with full sapce of that view (320*367)
CGRect imageframe = CGRectMake(0,0,320,367);
imageView = [[UIImageView alloc] initWithFrame:imageframe];
But i dont want to use self.hidesBottomBarWhenPushed = YES;
when i’m using this code self.tabBarController.tabBar.hidden = YES; it hides the tab bar and also it shows a blank space in the tabbar space..
Here,i want to hide the tabbar without white space for tabbar space(i.e., i want to resize the imageview when tabbar hide)
On view will Appear of second view resize the imageView frame.
By
And hide tabBar as usual by using self.hidesTabBarWhenPushed.