Skip to content

Instantly share code, notes, and snippets.

@jeksys
Created May 3, 2011 14:22
Show Gist options
  • Save jeksys/953410 to your computer and use it in GitHub Desktop.
Save jeksys/953410 to your computer and use it in GitHub Desktop.
ANIMATION BLOCK
[UIView animateWithDuration:HIDE_CONTROLS_ANIMATION
animations:^{
// and other controls
self.navigationController.navigationBar.hidden = ControlsHidden;
self.tabbar.hidden = ControlsHidden;
}
completion:^(BOOL finished){
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment