从 UILongPressGestureRecognizer 获取屏幕坐标

发布于 2024-12-25 03:54:37 字数 92 浏览 1 评论 0原文

我正在尝试在 iOS 应用程序中实现 UILongPressGestureRecognizer。它按预期触发,但我没有看到将屏幕坐标传递给我的目标方法。有谁知道该怎么做?

I am trying to implement a UILongPressGestureRecognizer in an iOS app. It fires as expected, but I don't see anyway of passing screen coordinates to my target method. Does anyone know how to do this?

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

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

发布评论

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

评论(1

神经大条 2025-01-01 03:54:37

这似乎是一个动作:

- (void)receivedLongPress:(UIGestureRecognizer *)gestureRecognizer 
{
     CGPoint coords = [gestureRecognizer locationInView:gestureRecognizer.view];
}

我仍然不太明白(似乎最后一个触摸点存储在gestureRecognizer中,在这种情况下我希望只有一个属性或其他东西)。但是,嘿,它有效。

This seems to work as an action:

- (void)receivedLongPress:(UIGestureRecognizer *)gestureRecognizer 
{
     CGPoint coords = [gestureRecognizer locationInView:gestureRecognizer.view];
}

I still don't really understand (it seems like the last touch point is stored in the gestureRecognizer, in which case I would expect there to just be a property or something). But hey, it works.

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