UIScrollView disable scrolling in just one direction?

前端 未结 10 1829
暗喜
暗喜 2020-12-13 09:40

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?

10条回答
  •  旧时难觅i
    2020-12-13 10:29

    Turns out a simple solution was actually possible and easy:

    - (void)scrollViewDidScroll:(UIScrollView *)scrollView {
        if (scrollView.contentOffset.y > 60) {
            [scrollView setContentOffset:CGPointMake(0, 60)];
        }
    }
    

提交回复
热议问题