What works to pass touches through to (and display all) subviews?
问题 I have the following subview chain: UIViewController.view -+ |-> UIView (subclass) -+ | +-> UIToolbar | +------------------------> UIWebView In the subclass, I override its -touchesEnded:forEvent: method in order to hide and show the UIToolbar on a single tap touch, through a CAAnimation , as well as issue an NSNotification that causes the view controller to hide its navigation bar. If I do not add the UIWebView as a subview to the view controller's view, then this works properly. If I then