I have set up some gesture recognition in an app that I\'m building. One of the gestures is a single finger single tap, which hides the toolbar at the top of the screen. Works g
Try wrapping your UIWebView
in a UIView
container and set your gesture recognizers on the container view. Touch events that are not handled by the UIWebView
will be passed up the view hierarchy and be intercepted by your container view, assuming it implements the appropriate handlers (and it is these handlers that should implement the code for hiding the toolbars...).