Search code examples
swiftscrollviewwkwebview

Disable vertical scroll in WKWebview when scrolling down in top of View


How to disable vertical scroll view when user swiping down finger from top of view like on the screen below?

enter image description here

Don't need that code,

self.webView.scrollView.isScrollEnabled = false

because it blocs all scrolling.

We also need to use vertical scroll view,

enter image description here

but without the gray box that appears when the user has gone up the page. How to block this moment?

Thanks in advance!


Solution

  • You need to disable bouncing

    self.webView.scrollView.bounces = false