#import "LongPressFix.h" @implementation LongPressFix - (void)pluginInitialize { self.lpgr = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPressGestures:)]; self.lpgr.minimumPressDuration = 0.45f; self.lpgr.allowableMovement = 100.0f; NSArray *views = self.webView.subviews; if (views.count == 0) { NSLog(@"No webview subviews found, not applying the longpress fix"); return; } for (int i=0; i