Disable vertical scroll in UIScrollView Swift

前端 未结 8 996
鱼传尺愫
鱼传尺愫 2021-02-15 00:47

(Don\'t mark this question as duplicated. I read a lot of questions but I don\'t find the answer to my issue.)

My issue is the following: I have a UIScrollView

8条回答
  •  星月不相逢
    2021-02-15 01:04

    Since iOS 11 content insets can get adjusted automatically. Try setting your scrollview's behaviour to not adjust it.

    if #available(iOS 11, *) {
        scrollview.contentInsetAdjustmentBehavior = .never
    }
    

提交回复
热议问题