iPhone SDK:检测最大 2 点触摸应用程序中哪个触摸先出现

发布于 2024-09-11 05:39:49 字数 168 浏览 6 评论 0原文

函数内部的编码 -(void) ccTouchMoved:(UITouch *)touch withEvent:(UIEvent *)事件 在“event”变量中接收2次触摸,如何检测哪一次触摸的寿命更长? 我知道我可以使用全局变量,并且在 touchbegin 中只需更新这些变量,但我宁愿采用更好的方法(如果有的话)。

Coding inside the function
-(void) ccTouchMoved:(UITouch *)touch withEvent:(UIEvent *)event
receiving 2 touches in the "event" variable, how can one detect which touch has lived longer?
i know i could use global variables and in the touchbegin just update these variables, but I rather do it the better way, if there is any.

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

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

发布评论

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

评论(2

几度春秋 2024-09-18 05:39:49

比较 UITouch 时间戳属性怎么样?

How about comparing the UITouch timestamp properties?

忆沫 2024-09-18 05:39:49

最终我存储了指向触摸的指针。手动保存时间戳,没有找到其他方法。

Eventually I stored pointers to the touches. saving a timestamp manually, found no other way.

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