URL:
you must set your scrollview content height to the scroll view height
CGSize scrollableSize = CGSizeMake(scrollableWidth, yourScrollViewHeight);[myScrollView setContentSize:scrollableSize];
- (void)scrollViewDidScroll:(UIScrollView *)scrollView { self.scrollView.contentOffset = CGPointMake(self.scrollView.contentOffset.x, 0);}