iOS Question Impossible to disable boucing scroll effect in WebView

Akwa

Member
Licensed User
Hello,

I tried some "solutions" to block the boucing scroll effect in webview. None of them have any effect.
The "official solution" is :
Objective-C:
WebView.scrollView.bounces = false;
WebView.scrollView.alwaysBounceVertical= false;
WebView.scrollView.alwaysBounceHorizontal= false;

That give :
B4X:
MainWebView.As(NativeObject).GetField("scrollView").SetField("bounces", False)
MainWebView.As(NativeObject).GetField("scrollView").SetField("alwaysBounceVertical", False)
MainWebView.As(NativeObject).GetField("scrollView").SetField("alwaysBounceHorizontal", False)

Have somebody any idea ?
 
Top