Disabling vertical scrolling in UIScrollView

后端 未结 12 1965
终归单人心
终归单人心 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条回答
  •  -上瘾入骨i
    2020-11-30 20:46

    On iOS 11 please remember to add the following, if you're interested in creating a scrollview that sticks to the screen bounds rather than a safe area.:

    if (@available(iOS 11.0, *)) {
        [self.scrollView setContentInsetAdjustmentBehavior:UIScrollViewContentInsetAdjustmentNever];
    }
    

提交回复
热议问题