菜鸟教程小白 发表于 2022-12-13 10:54:11

ios - 如何在 UIScrollView 中检测触摸点


                                            <p><p>我需要能够检测窗口中 UIScrollView 上的拖动事件发生的位置。我找不到任何可以执行此操作的 ScrollView 委托(delegate)方法?
有人可以帮忙吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以通过 <code>panGestureRecognizer</code> 属性从 ScrollView 中访问底层 <code>UIPanGestureRecognizer</code>。完成后,您可以使用 <code>addTarget:action:</code> 方法将您的类添加为目标。</p>

<p>在您的处理程序中,您可以从手势识别器获取触摸。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 UIScrollView 中检测触摸点,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/30675776/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/30675776/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 UIScrollView 中检测触摸点