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
Below solution worked for me : Tested only ionic 3.9 version
Run command,
@implementation UIScrollView (NoBounce)
- (void)didMoveToWindow {
[super didMoveToWindow];
self.bounces = NO;
}
@end