Ionic 4.0.1 - Remove iOS scroll "bounce"

Run command,

ionic cordova platform add ios && ionic cordova prepare ios
Then find CDVWKWebViewEngine.m, inside /platforms/ios//Plugins/cordova-plugin-ionic-webview/
Put this lines of code at the bottom of the lines and save it.

@implementation UIScrollView (NoBounce)

  • (void)didMoveToWindow {
    [super didMoveToWindow];
    self.bounces = NO;
    }
    @end

ref: ios - Disable content bouncing scroll - Stack Overflow

1 Like