Disabling vertical scrolling in UIScrollView

后端 未结 12 1995
终归单人心
终归单人心 2020-11-30 20:02

There is an option in IB to uncheck vertical scrolling on a scrollview, but it doesnt seem to work.

How can the scrollview be set to only scroll horizontally, and no

12条回答
  •  被撕碎了的回忆
    2020-11-30 20:47

    - (void)scrollViewDidScroll:(UIScrollView *)aScrollView
    {
        [aScrollView setContentOffset: CGPointMake(aScrollView.contentOffset.x,0)];
    
    }
    

    you must have confirmed to UIScrollViewDelegate

    aScrollView.delegate = self;
    

提交回复
热议问题