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
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.