URL:http://stackoverflow.com/questions/11844548/how-to-disable-vertical-scrolling-in-uiscrollview-obj-c


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);}