Disable “save image” in iOS web application

前端 未结 4 688
南旧
南旧 2021-01-04 01:04

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         


        
4条回答
  •  旧时难觅i
    2021-01-04 02:02

    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];
            }
        }
    }
    

提交回复
热议问题