iPhone 屏幕变暗
我正在开发一个应用程序,它可能会在黑暗区域使用并且需要降低亮度。我想将其放入应用程序中,并认为我可以添加一个具有黑色背景颜色的 UIView 并更改 alpha,但这会妨碍用户交互。
有谁知道如何在不妨碍人际互动的情况下做到这一点?
谢谢
I'm working on an application where it may be used in a dark area and the brightness is required to be lowered. I wanted to put this into the application, and thought that I could add a UIView with a black bg color and change the alpha, but this gets in the way of the user interaction.
Does anyone have an idea on how to do this without blocking human interaction?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 UIView 的 userInteractionEnabled 属性设置为 NO。
Set the UIView's
userInteractionEnabled
property to NO.