check the "hidesBottomBarWhenPushed" property on a subclass of your UIViewController page detail
either override this method
- (BOOL)hidesBottomBarWhenPushed
{
return YES;
}
or I assume this will work the same way:
self.hidesBottomBarWhenPushed = YES;
To show the toolbar:
- (void)viewWillAppear:(BOOL)animated
{
[self.navigationController setToolbarHidden:NO animated:YES];
}
and at the exit
- (void)viewWillDisappear:(BOOL)animated
{
[self.navigationController setToolbarHidden:YES animated:YES];
}
source
share