How to disable vertical scroll view when user swiping down finger from top of view like on the screen below?
Don't need that code,
self.webView.scrollView.isScrollEnabled = false
because it blocs all scrolling.
We also need to use vertical scroll view,
but without the gray box that appears when the user has gone up the page. How to block this moment?
Thanks in advance!
You need to disable bouncing
self.webView.scrollView.bounces = false