Disabling vertical scrolling in UIScrollView

后端 未结 12 2001
终归单人心
终归单人心 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:52

    Just set the y to be always on top. Need to conform with UIScrollViewDelegate

    func scrollViewDidScroll(scrollView: UIScrollView) {
            scrollView.contentOffset.y = 0.0
    }
    

    This will keep the Deceleration / Acceleration effect of the scrolling.

提交回复
热议问题