iPhone SDK:检测最大 2 点触摸应用程序中哪个触摸先出现
函数内部的编码 -(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
比较 UITouch 时间戳属性怎么样?
How about comparing the UITouch timestamp properties?
最终我存储了指向触摸的指针。手动保存时间戳,没有找到其他方法。
Eventually I stored pointers to the touches. saving a timestamp manually, found no other way.