标签: ios uiview uikit user-interaction uiresponder
情景就像,
我在一个UIButton中有一个UIView。 所以UIView是父视图 UIButton是儿童观 现在,
UIButton
UIView
你能解释UIButton如何知道它的父视图的用户交互是假的吗?
谢谢,
答案 0 :(得分:0)
类似的问题,请检查here
不,你不能。父视图上的userInteractionEnabled设置为NO将阻止所有子视图。
以下是Appel关于“事件传递”的文档,请查看link
使用self.superView.userInteractionEnabled方法或hitTest:withEvent:方法检查属性pointInside:withEvent:。
self.superView.userInteractionEnabled
hitTest:withEvent:
pointInside:withEvent: