(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
UIScrollView
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 }