iOS - CALayer 和手势/滑动识别器

发布于 2024-12-15 18:15:16 字数 126 浏览 2 评论 0原文

我在视图中添加了一个图层来创建渐变背景色,但我需要在视图中使用 UISwipeGestureRecognizer 。问题是,现在有了图层,滑动识别器就不起作用了!我该怎么办?我可以向图层添加滑动识别器吗? 谢谢。

I added a layer to my view to create gradient background color, but I need to use UISwipeGestureRecognizer in my view. The problem is that now, with the layer, the swipe recognizer doesn't work! How can I do?? Can I add a swipe recognizer to a layer?
Thanks.

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

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

发布评论

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

评论(1

树深时见影 2024-12-22 18:15:16

CALayer 及其子项不支持 UIGestureRecognizer,只有 UIView 支持。这意味着您必须将手势识别器附加到某些封闭视图并调用 -[CALayer hitTest:],或 -[CALayer pointInside:] 查看特定触摸或事件击中了哪一层。

CALayer and its children do not support UIGestureRecognizer's, only UIView does. This means that you must attach gesture recognizers to some enclosing view and call -[CALayer hitTest:], or -[CALayer pointInside:] to see which layer has been hit by a particular touch or event.

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