I am hiding my tabbar while navigating to first view to secondView,But how can I show it back while poping from second view to first view
In first view
-(IBAction)gotoSecondView{
VideoDetailViewController *vdoDtlPage = [[VideoDetailViewController alloc]initWithNibName:@"VideoDetailViewController" bundle:nil];
self.hidesBottomBarWhenPushed=YES;
[self.navigationController pushViewController:vdoDtlPage animated:YES];
}
From Second View
-(IBAction)back:(id)sender{
self.hidesBottomBarWhenPushed=NO;
[self.navigationController popViewControllerAnimated:YES];
}