Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 10th, 2012  |  syntax: None  |  size: 0.49 KB  |  hits: 28  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. UINavigationControoller - setNavigationBarHidden:animated: How to sync other animations
  2. [self.navigationController setNavigationBarHidden:YES animated:YES];
  3.  [UIView transitionWithView:self.view
  4.                    duration:UINavigationControllerHideShowBarDuration
  5.                     options:UIViewAnimationOptionCurveLinear
  6.                  animations:^
  7.   {
  8.    /* Put other animation code here ;) */
  9.   }
  10.                  completion:^(BOOL finished)
  11.   {                                  
  12.   }];