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.
我正在开发一个应用程序,我在视觉上构建了界面,我在顶部有一个图像,覆盖了整个视图,包括下面的按钮,我遇到的问题是按钮仍然可以被点击,即使图像是覆盖它们。这是应该发生的,还是我错过了一些非常简单的事情?
将userInteractionEnabled图像的属性设置为YES,以便拦截所有触摸。
userInteractionEnabled
YES
使用禁用按钮:[button setEnabled:false];
如果你不使用它,你也可以隐藏它 [button setHidden:true];