I\'ve been unable to find an answer for this (maybe someone has hacked a solution together).
Is it possible to disable scrolling in a UIScrollView in one direction?
An alternative might be:
- (void)scrollViewDidScroll:(UIScrollView *)scrollView { if (scrollView.contentOffset.y < 10) { scrollView.bounces = NO; } else scrollView.bounces = YES; }
But remember that this will only work for the scrollViews, which have a bigger content than their frames.