Skip to content

Instantly share code, notes, and snippets.

@jollyjoester
Last active August 29, 2015 13:58
Show Gist options
  • Save jollyjoester/10098790 to your computer and use it in GitHub Desktop.
Save jollyjoester/10098790 to your computer and use it in GitHub Desktop.
// メインのViewController
- (void)viewDidLoad
{
[self.navigationController setNavigationBarHidden:YES animated:NO];
}
// サブのViewController
-(void)viewWillAppear:(BOOL)animated{
[self.navigationController setNavigationBarHidden:NO animated:YES];
}
-(void)viewWillDisappear:(BOOL)animated{
[self.navigationController setNavigationBarHidden:YES animated:YES];
}
@jollyjoester
Copy link
Author

メインの画面ではナビゲーションバーを表示したくない場合の実装

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment