Xcode:是否可以向按钮、图像等对象添加手势识别器

发布于 2024-12-04 13:28:56 字数 454 浏览 0 评论 0原文

我想知道是否可以将手势识别器添加到按钮、图像等对象。

我已经使用此代码来创建手势识别器:

UITapGestureRecognizer *tapRecognizer;
tapRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(foundTap:)];
tapRecognizer.numberOfTapsRequired = 1;
tapRecognizer.numberOfTouchesRequired = 1;

并且当我尝试添加手势时我使用此代码:

[button addGestureRecognizer:tapRecognizer];

问题是它没有不工作。

有什么想法吗?

提前致谢 :)

I was wondering if it is possible to add gesture recognizers to objects like buttons, images etc.

I have used this code to create a gesture recognizer:

UITapGestureRecognizer *tapRecognizer;
tapRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(foundTap:)];
tapRecognizer.numberOfTapsRequired = 1;
tapRecognizer.numberOfTouchesRequired = 1;

and than when I try to add the gesture I use this code:

[button addGestureRecognizer:tapRecognizer];

Problem is that it doesn't work.

Any ideas?

Thanks in advance :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故人的歌 2024-12-11 13:28:56

您的代码在 UIButton 上非常适合我,并且覆盖了按钮的正常操作。

您能更具体地说明“不起作用”吗?你的意思是它会报错?或者你没有看到回调?

如果是后者,您如何声明方法 'foundTap:' ?

Your code works great for me on a UIButton, and overrides the normal action of the button.

Can you be more specific about "doesn't work"? You mean it gives an error? Or you see no callback?

If the latter, how did you declare the method 'foundTap:' ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文