Skip to content

Instantly share code, notes, and snippets.

@jordanebelanger
Created August 28, 2013 15:34
Show Gist options
  • Save jordanebelanger/6367410 to your computer and use it in GitHub Desktop.
Save jordanebelanger/6367410 to your computer and use it in GitHub Desktop.
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate
{
if (scrollView.scrollDirectionX == ScrollDirectionRight) {
//Do something with your views etc
}
if (scrollView.scrollDirectionY == ScrollDirectionUp) {
//Do something with your views etc
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment