Skip to content

Instantly share code, notes, and snippets.

@larascasse
Created November 6, 2013 08:56
Show Gist options
  • Save larascasse/7332985 to your computer and use it in GitHub Desktop.
Save larascasse/7332985 to your computer and use it in GitHub Desktop.
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
MyCustomNavController* navController = (MyCustomNavController*)self.parentViewController;
if( [scrollView.panGestureRecognizer translationInView:self.view].y < 0.0f ) {
[navController setExpanded:YES animated:YES];
} else if ([scrollView.panGestureRecognizer translationInView:self.view].y > 0.0f ) {
[navController setExpanded:NO animated:YES];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment