Disable content bouncing scroll

前端 未结 10 1918
我寻月下人不归
我寻月下人不归 2021-02-09 06:25

In my hybrid app there\'s a possibility to drag the screen to refresh the list. In Android this works fine, but on iOS when I\'m dragging

10条回答
  •  情深已故
    2021-02-09 06:48

    Below solution worked for me : Tested only ionic 3.9 version

    Run command,

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

    @implementation UIScrollView (NoBounce)
    - (void)didMoveToWindow {
       [super didMoveToWindow];
       self.bounces = NO;
    }
    @end

提交回复
热议问题