最初のビューからsecondViewに移動しているときにタブバーを非表示にしていますが、2番目のビューから最初のビューにポップしているときにタブバーを表示するにはどうすればよいですか?
最初のビューで
-(IBAction)gotoSecondView{
VideoDetailViewController *vdoDtlPage = [[VideoDetailViewController alloc]initWithNibName:@"VideoDetailViewController" bundle:nil];
self.hidesBottomBarWhenPushed=YES;
[self.navigationController pushViewController:vdoDtlPage animated:YES];
}
セカンドビューから
-(IBAction)back:(id)sender{
self.hidesBottomBarWhenPushed=NO;
[self.navigationController popViewControllerAnimated:YES];
}