WKWebView issue in iOS 16 beta

webView.scrollView.bounces = NO;

I set up the code, but the webView can still slide up and down.

I assigned a color to the scrollView, I'm sure that's not the scrolling effect of the web page.

I am using WKWebview.

While the property bounces cannot control the display of the extra area, the property alwaysBounceVertical can.

Sorry, I can't take a screenshot.

Will this issue be fixed after the official version is released? Or that it was expected.

My Xcode: Version 14.0 beta 4 (14A5284g)

Simulator: iPhone 13 Pro - iOS 16.0

I ended up facing this issue on io16 beta for an app which worked well on previous versions of ios (15/14)

I faced the same problem.

In iOS16beta wkWebView.scrollView.bouces = false does not work.

WKWebView issue in iOS 16 beta

Have anyone filed a bug about this? If so, what was the bug number? If not, please file a bug and post your bug number here, just for the record.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

In iOS16beta WebView.ScrollView.Bounces = false; WebView.ScrollView.AlwaysBounceHorizontal = false; WebView.ScrollView.AlwaysBounceVertical = false;

Is it resolved?

Is it resolved?

This problem has continued from the first day of iOS 16 to the official version

Is it resolved?

Is it resolved?

please resolve this issue..

Is it resolved?

Is it resolved?

Until apple fixes this issue, As a work around we can use below on iOS 16. It works.

    self.webView.scrollView.alwaysBounceVertical = NO;     self.webView.scrollView.alwaysBounceHorizontal = NO;

Until apple fixes this issue, As a work around we can use below on iOS 16. It works. self.webView.scrollView.alwaysBounceVertical=NO; self.webView.scrollView.alwaysBounceHorizontal = NO;

After days of struggle, the following workaround works for me on XCode Version 14.0 (14A309).       self.webView.scrollView.bounces = false     self.webView.scrollView.alwaysBounceHorizontal = false     self.webView.scrollView.alwaysBounceVertical = false

it doesnt work.. self.webView.scrollView.bounces = false    self.webView.scrollView.alwaysBounceHorizontal = false    self.webView.scrollView.alwaysBounceVertical = false

Is it resolved?

Is it resolved?

I had the same problem as you, I fixed it as follows: WKWebview.scrollView.scrollEnabled = NO;

solved on iOS16.2

webView.scrollView.bounces = false webView.scrollView.alwaysBounceHorizontal = false webView.scrollView.alwaysBounceVertical = false 都没有用了, ios16.2官方会修复这个问题吗?

The bug has not been fixed for more than half a year,行不行啊,细狗

WKWebView issue in iOS 16 beta
 
 
Q