How to disable vertical scrolling in UIScrollView (Obj-C)

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



你可能感兴趣的:(content,scroll,Vertical)