菜鸟教程小白 发表于 2022-12-13 14:20:29

ios - 如何为 TapGesture 识别器设置框架


                                            <p><p>我有一个 imageview,我只想点击 imageview 的一侧。是否可以为手势设置框架?任何人都可以提供解决方案吗? </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>使用 <code>UIGestureRecognizerDelegate</code>,我想你可以了解如何比较:</p>

<pre><code>-(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch {
    if (.x &lt; somePoint.x) {
      return false;
    } else {
      return true;
    }
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何为 TapGesture 识别器设置框架,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/40523715/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/40523715/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何为 TapGesture 识别器设置框架