菜鸟教程小白 发表于 2022-12-13 13:53:59

ios - UIViewController 没有收到 touchesBegan 消息


                                            <p><p>我的 UIViewController 中有一个 UIScrollView。我需要检测任何形式的触摸,然后做点什么。我还需要什么?</p>

<pre><code>- (BOOL)canBecomeFirstResponder {
    return YES;
}

- (void)viewDidAppear:(BOOL)animated {
    ;
    ;
}

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    NSLog(@&#34;TOUCHED&#34;); // never happens
    for (UITouch *touch in touches) {
      if ( == self.myScrollView)
      {
            //do something
      }
    }
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>两个选择:</p>

<ol>
<li>继承 UIScrollView 并实现您的 touchesBegan[...] 代码
那里</li>
<li>添加一个 UIView 到你的 UIScrollView 并使用 UIView 的
    touchesBegan[...] 委托(delegate)方法</li>
</ol></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UIViewController 没有收到 touchesBegan 消息,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10793809/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10793809/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UIViewController 没有收到 touchesBegan 消息