UITapGestureRecognizer 识别主视图上的点击(不是输入或按钮)
我希望当用户单击 UIView 背景的任何部分时收到通知;基本上,如果用户在我的 UIView 上的任何控件(表格、文本字段、按钮等)之外单击。
我该怎么办?我尝试这样做:
if ([touch.view isKindOf:[UIView class]]) {
do something....
}
但是,显然所有控件都扩展了 UIView...所以,我有点卡住了。
I would like to get notified when a user clicks any part of the background of my UIView; basically if the user clicks outside of any control that is on my UIView (tables, textfields, buttons, etc).
How do I go about it? I tried doing this:
if ([touch.view isKindOf:[UIView class]]) {
do something....
}
But, obviously all controls extend UIView... so, I'm a bit stuck.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够执行以下操作:
You should be able to do the following:
实现此目的的一种方法是添加一个单独的背景视图,该背景视图是 VC 主视图的子视图。您只需将其设置为透明即可,这样就不会影响您的造型。位置位于所有其他儿童景观的后面。然后在该视图上注册您的 GR。
One way you could do this is add a separate background view that is a child of your VC's main view. You can simply make it transparent so it doesn't interfere with your styling. Place is in the behind all the other children views. Then register your GR on that view.