Disable content bouncing scroll

前端 未结 10 1921
我寻月下人不归
我寻月下人不归 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 07:01

    on ionic 4 . If this fail force to remove bounce with.

    To remove and force the not bounce in the component ion-content on ios, create the file DisableBounce.m With the following content.

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

    and to save on platforms/ios/CordovaLib/Classes/Private/Plugins/CDVUIWebViewEngine. this disable all efect bounce in you app.

提交回复
热议问题