Skip to content

Instantly share code, notes, and snippets.

@zld
Last active August 29, 2015 14:21
Show Gist options
  • Save zld/7dd88f6d1d15cf892d80 to your computer and use it in GitHub Desktop.
Save zld/7dd88f6d1d15cf892d80 to your computer and use it in GitHub Desktop.
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
CGFloat offsetY = scrollView.contentOffset.y;
if (offsetY < 0) {
[scrollView setContentOffset:CGPointMake(0, 0) animated:NO];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment