I want to disable the \"save image\" menu in mobile web applications that appears when you hold down a finger on an image. I tried the CSS properties:
-webki
nothing worked for me except of removing the long press gesture recogniser:
for (UIView *subView in self.webView.scrollView.subviews) {
for (UIGestureRecognizer *recogniser in subView.gestureRecognizers) {
if ([recogniser isKindOfClass:UILongPressGestureRecognizer.class]) {
[subView removeGestureRecognizer:recogniser];
}
}
}