gpt4 book ai didi

iOS 点击识别器捕捉所有点击

转载 作者:行者123 更新时间:2023-11-29 01:37:26 25 4
gpt4 key购买 nike

我想要一个非常简单的东西 - 在我的顶部 Controller (它是导航 Controller )中设置一个点击手势识别器,它将捕获 View 中所有位置的所有点击。目前,当我点击一个按钮时,系统甚至不会考虑打扰我的识别器(gestureRecognizer:shouldReceiveTouch: 委托(delegate)方法除外,我在其中返回 YES)。相反,它只是执行一个按钮点击。所以无论如何我都想在 View 层次结构上安装“最强”的识别器。

最佳答案

您可以尝试将一个空的 UIView 放在所有其他 View 之上,并向其中添加 UITapGestureRecognizer。我们对帮助覆盖做了类似的事情。最大的问题是弄清楚如何以及何时忽略触摸,以便底层按钮在需要时得到它们。

@implementation ViewController

- (void)viewDidLoad {
[super viewDidLoad];

UIButton *b = [UIButton buttonWithType:UIButtonTypeInfoDark];
b.frame = CGRectMake(50,50, b.bounds.size.width, b.bounds.size.height );
[self.view addSubview:b];

UIView *invisibleView = [[UIView alloc] initWithFrame:self.view.bounds];
invisibleView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[invisibleView addGestureRecognizer:[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapHit:)]];
[self.view addSubview:invisibleView];
}

-(void)tapHit:(UITapGestureRecognizer*)tap {
NSLog( @"tapHit" );
}
@end

关于iOS 点击识别器捕捉所有点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32813231/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com