Skip to content

Instantly share code, notes, and snippets.

@psobko
Created August 28, 2013 16:15
Show Gist options
  • Save psobko/6367903 to your computer and use it in GitHub Desktop.
Save psobko/6367903 to your computer and use it in GitHub Desktop.
Control how far a UIScrollView can bounce
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
if (scrollView.contentOffset.y < -50)
{
scrollView.contentOffset = CGPointMake(0, -50);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment