In my app I have a UISearchBar under UINavigationBar so it is always visible to user. In that case I had to set contentInset with extr
UISearchBar
UINavigationBar
contentInset
automaticallyAdjustsScrollViewInsets is deprecated in iOS11 (and the accepted solution no longer works). use:
if #available(iOS 11.0, *) { scrollView.contentInsetAdjustmentBehavior = .never } else { automaticallyAdjustsScrollViewInsets = false }