- UINavigationControoller - setNavigationBarHidden:animated: How to sync other animations
- [self.navigationController setNavigationBarHidden:YES animated:YES];
- [UIView transitionWithView:self.view
- duration:UINavigationControllerHideShowBarDuration
- options:UIViewAnimationOptionCurveLinear
- animations:^
- {
- /* Put other animation code here ;) */
- }
- completion:^(BOOL finished)
- {
- }];