How to disable double tap on UIWebView

2011-07-11 Thread Symadept
Hi, How can I disabe double tap on UIWebView. I tried to override touchesBegan but it is not invoked. Any idea how can I fix this. Regards symadept ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or

Re: How to disable double tap on UIWebView

2011-07-11 Thread Evadne Wu
The best thing is to inject some JavaScript event handlers and prevent default actions. This is the cleanest way but I don’t know what happens if your user disables JavaScript. Again the web view wraps around a scroll view, so enumerating thru the view hierarchy and finding all the gesture

Re: How to disable double tap on UIWebView

2011-07-11 Thread Stephane Sudre
Is it to disable zooming? Because there's apparently a property for that. On Mon, Jul 11, 2011 at 2:27 PM, Symadept symad...@gmail.com wrote: Hi, How can I disabe double tap on UIWebView. I tried to override touchesBegan but it is not invoked. Any idea how can I fix this.