菜鸟教程小白 发表于 2022-12-12 17:12:14

iOS 如何为 Sprite Kit 中的节点实现 UIButton 的类似行为?


                                            <p><p><strong>我希望我的一些 Sprite Kit 节点表现得像 UIButtons</strong>。我尝试了两种方法:</p>

<p>1) 使用 <code>touchesBegan:</code> - 如果用户很小心,这会起作用,但似乎会触发多次,比我禁用交互的速度要快,导致按钮能够被多次激活: </p>

<pre><code>   spriteNode.userInteractionEnabled = YES;

//causes the following to fire when node receives touch
    -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {

      self.userInteractionEnabled = NO;

      DLog(@&#34;Do node action&#34;);
      self.userInteractionEnabled = YES;


    }
</code></pre>

<p>2)我切换到 <a href="http://koboldkit.com/" rel="noreferrer noopener nofollow">Kobold-Kit</a>作为 iOS Sprite Kit 之上的一个层。它允许我做的一件事是添加 <a href="http://koboldkit.com/api/7.0/KoboldKitFree/html/Classes/KKButtonBehavior.html" rel="noreferrer noopener nofollow">button - like behavior</a>到任何节点。但是,我遇到了一个问题,如果我有 2 个按钮堆叠在一起,点击顶部按钮会同时激活这两个按钮。在这种情况下, bool 标志可以防止重复交互。我在 KKScene 中跟踪了堆叠按钮一起触发此调用的问题:</p>

<pre><code>-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    ;

    for (id observer in _inputObservers)
    {
      if ()
      {
            ;
      }
    }
}
</code></pre>

<p>场景只是向场景中的所有节点发送通知。这会导致堆叠在一起的按钮行为一起触发。</p>

<p>有没有一种方法或示例显示<strong>如何正确排列 Sprite 节点以允许类似于 UIButton 的行为</strong>,我只能激活顶部按钮,并且每次激活都会短暂禁用按钮之后的时间?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><pre><code>@property (nonatomic, strong) UITapGestureRecognizer *tapGesture;

self.tapGesture = [ initWithTarget:self action:@selector(tapGestureStateChanged:)];
self.tapGesture.delegate = self;
;


- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer
{
    if (gestureRecognizer == self.tapGesture) {
      return CGRectContainsPoint(self.neededSprite.frame, toNode:self]);
    }
    return YES;
}



- (void)tapGestureStateChanged:(UITapGestureRecognizer *)sender
    {
      if (sender.state == UIGestureRecognizerStateRecognized) {
/* do stuff here */
    }
    }
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iOS 如何为 Sprite Kit 中的节点实现 UIButton 的类似行为?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/20640412/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/20640412/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS 如何为 Sprite Kit 中的节点实现 UIButton 的类似行为?