gpt4 book ai didi

ios - 捏合手势未应用于 UILabel 但应用于 UIView

转载 作者:行者123 更新时间:2023-11-28 22:06:05 26 4
gpt4 key购买 nike

我只是在 UILabel 上尝试捏合手势,但它不起作用。当我将它应用于 UIView 时,它起作用了。

下面是我的代码:

在viewDidLoad中

UIPinchGestureRecognizer *pinchLabel = [[UIPinchGestureRecognizer alloc] initWithTarget:self action:@selector(pinchLabel:)];
[pinchLabel setDelegate:self];
[_lblDouble addGestureRecognizer:pinchLabel];

-(void)pinchLabel:(UIPinchGestureRecognizer *)recognizer{
NSLog(@"jhhj"); // method never gets called. I have a breakpoint here.
}

为什么会这样?我哪里错了?

最佳答案

也许您应该添加以下代码。否则所有代码看起来都不错。

_lblDouble.userInteractionEnabled = YES;

关于ios - 捏合手势未应用于 UILabel 但应用于 UIView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23928089/

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