Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个全屏 UIWebView,我想在它上面添加一个半透明的子视图。当我这样做时,我无法单击 UIWebview 上的任何链接,这告诉我事件是由视图层次结构的最顶层捕获的,即半透明子视图。[myUIWebView becomeFirstResponder] 似乎没有帮助
A默认启用 如果子视图是例如 a你应该能够捕获输入,因为UIView它是关闭的。allowUserInteractionUIImageViewallowUserInteraction
UIView
allowUserInteraction
UIImageView
所以allowUserInteraction试一试。如果您想在两者上都输入,那么您需要在子视图中捕获它并将未使用的输入发送下来。