3

I'm just wondering how to disable the long press gesture on webview in iOS. I need to disable only long press gesture not others. should work on iOS 5.0 + thank you

2 Answers2

3

I want to thank all for help. I finally found the solution after intensive stackoverflow research. For help other :

In the javascript/html, you can avoid dealing with the longpress event.

The solution was given long time ago : Preventing default context menu on longpress / longclick in mobile Safari (iPad / iPhone)

I did it and it is just perfect. Thanks and thanks again.

JM

IneoScan
  • 31
  • 2
1

You could make UIWebView as a super class to one of your custom class, extend it.. and override touchesBegan.. methods from UIView class..

chuthan20
  • 5,389
  • 1
  • 17
  • 21