gpt4 book ai didi

ios - 当一个手指仍在屏幕上时检测另一个触摸

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:23:42 26 4
gpt4 key购买 nike

我想在一根手指仍在屏幕上时检测到触摸,这意味着仍然取消了触摸,因为它没有被调用...是否有可能因为我想忽略该触摸并在下一根手指上执行操作... ...

谢谢

最佳答案

- (void)ccTouchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {

//those are all touches on this began call
for (UITouch *touch in touches) {

CGPoint location = [touch locationInView: [touch view]];
CGPoint convertedLocation = [[CCDirector sharedDirector] convertToGL:location];

//those are ALL the touches on screen
NSSet *allTouches = [event allTouches];

您还可以通过读取触摸的哈希码并使用 int firstTouchHash = [touch hash] 保存它来跟踪触摸。

如果触摸集和 allTouches 集具有相同的 count(在这种情况下,我们是第一次触摸屏幕),您可以检查 TouchesBegan,在这种情况下,我们可以保存哈希 int firstTouchHash = [touch hash]

当我们再次触摸屏幕时,allTouches 包含的元素比 touches 多,我们总是知道第一次触摸是什么,因为我们保存了哈希值。(不保存散列,如果我们用一个手指触摸,然后用第二个手指触摸,然后用第三个手指触摸,当第三次触摸发生时,我们不知道前两次触摸中的哪一次是第一次触摸,因为它们都在 allTouches 集合(集合是元素的无序集合))

关于ios - 当一个手指仍在屏幕上时检测另一个触摸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9064383/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com